SQL Server 数据类型映射的 C# 数据类型
EF | EF Core | 映射到 SQL Server 数据类型 |
---|---|---|
int | int | int |
string | string | nvarchar(Max) |
decimal | decimal | decimal(18,2) |
float | float | real |
byte[] | byte[] | varbinary(Max) |
DateTime | - | datetime |
- | DateTime | datetime2(7) |
bool | bool | bit |
byte | byte | tinyint |
short | short | smallint |
long | long | bigint |
double | double | float |
char | char | - |
sbyte | sbyte | - |
object | object | - |