博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
SQL SERVER中字段类型与C#数据类型的对应关系
阅读量:5865 次
发布时间:2019-06-19

本文共 552 字,大约阅读时间需要 1 分钟。

hot3.png

数据库

C#程序

int

int32

text

string

bigint

int64

binary

System.Byte[]

bit

Boolean

char

string

datetime

System.DateTime

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

timestamp

System.DateTime

tinyint

System.Byte

varbinary

System.Byte[]

varchar

String

Variant

Object

unique identifier

System.Guid

参考资料:数据库字段类型对应C#数据类型   

转载于:https://my.oschina.net/u/2428791/blog/502878

你可能感兴趣的文章
Configuring Hive On Spark
查看>>
spring boot中实现响应图片的方法以及改进
查看>>
Leetcode日记8
查看>>
Java多线程技能
查看>>
从 Project Professional 中登录 Project Server
查看>>
单链表的一些经典面试题
查看>>
frameset iframe frame之间的区别
查看>>
Python转义字符
查看>>
Kubernetes平台中日志收集
查看>>
ElasticSearch学习(8)-Restful接口查询操作
查看>>
URL—base64加密
查看>>
打包审核的那些个坑 (含swift)
查看>>
电子秤示数读取方案
查看>>
我的友情链接
查看>>
Nginx+Keepalived搭建高可用负载均衡集群
查看>>
js获取当前物理地址
查看>>
一个例子说明java局部代码块、静态代码块、构造代码块区别
查看>>
LVS的三种模式区别详解
查看>>
Nginx(1)-nginx的编译安装
查看>>
Unity3d iOS 如何添加Admob
查看>>