SQL Server类型与C#类型对应关系

SQL Server类型C#类型
bit bool
tinyint byte
smallint short
int int
bigint long
real float
float double
money decimal
datetime DateTime
char string
varchar string
nchar string
nvarchar string
text string
ntext string
image byte[]
binary byte[]
uniqueidentifier Guid

原文地址:https://www.cnblogs.com/Andy-Blog/p/12165507.html