欢迎光临
个人技术文档整理

SQL Server 数据类型映射的 C# 数据类型EFEF 到 SQL Server 数据类型

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 -

 

 

赞(1)