Mercurial > pub > bltoolkit
comparison UnitTests/Linq/Model/DataTypeTest.cs @ 0:f990fcb411a9
Копия текущей версии из github
| author | cin |
|---|---|
| date | Thu, 27 Mar 2014 21:46:09 +0400 |
| parents | |
| children |
comparison
equal
deleted
inserted
replaced
| -1:000000000000 | 0:f990fcb411a9 |
|---|---|
| 1 using System; | |
| 2 using System.Data.Linq; | |
| 3 using System.Xml.Linq; | |
| 4 | |
| 5 namespace Data.Linq.Model | |
| 6 { | |
| 7 public class DataTypeTest | |
| 8 { | |
| 9 public int DataTypeID; | |
| 10 public Binary Binary_; | |
| 11 public bool? Boolean_; | |
| 12 public byte? Byte_; | |
| 13 public Binary Bytes_; | |
| 14 public char? Char_; | |
| 15 public DateTime? DateTime_; | |
| 16 public decimal? Decimal_; | |
| 17 public double? Double_; | |
| 18 public Guid? Guid_; | |
| 19 public short? Int16_; | |
| 20 public int? Int32_; | |
| 21 public long? Int64_; | |
| 22 public decimal? Money_; | |
| 23 public byte? SByte_; | |
| 24 public float? Single_; | |
| 25 public Binary Stream_; | |
| 26 public string String_; | |
| 27 public short? UInt16_; | |
| 28 public int? UInt32_; | |
| 29 public long? UInt64_; | |
| 30 public XElement Xml_; | |
| 31 } | |
| 32 } |
