SQL Server(00):SQL Server与CLR数据类型的对应关系

SQL Server 数据类型映射 - ADO.NET | Microsoft Docs

一、对应关系

数据库

C#程序

int

int32

text

string

bigint

int64

binary

System.Byte[]

bit

Boolean

char

string

date

System.DateTime

datetime2

System.DateTime

datetimeoffset

System.DateTimeOffset

decimal

System.Decimal

float

System.Double

image

System.Byte[]

money

System.Decimal

nchar

String

ntext

String

numeric

System.Decimal

nvarchar

String

real

System.Single

smalldatetime

System.DateTime

smallint

Int16

smallmoney

System.Decimal

time

System.TimeSpan

timestamp

System.DateTime

tinyint

System.Byte

varbinary

System.Byte[]

varchar

String

Variant

Object

unique identifier

System.Guid

二、参考

Sql Server 支持的数据类型

 

posted on 2018-12-06 10:43  springsnow  阅读(573)  评论(0编辑  收藏  举报

导航