Enum DataType
MySQL column data types.
public enum DataType
Fields
BigInt = 5Binary = 18Bit = 9Blob = 21Char = 10Date = 24DateTime = 26Decimal = 6Double = 8Enum = 16Float = 7Geometry = 30Int = 4Json = 29LongBlob = 23LongText = 15MediumBlob = 22MediumInt = 3MediumText = 14Set = 17SmallInt = 2Text = 13Time = 25Timestamp = 27TinyBlob = 20TinyInt = 1TinyText = 12Unspecified = 0No explicit type was declared on the column. The type is inferred from the CLR property type via InferColumn(Type, int?). This is the default so that
[Column(Name = "x")]without aDataTypeinfers correctly instead of silently resolving to TinyInt.VarBinary = 19VarChar = 11Year = 28