zoukankan
html css js c++ java
Sql Server 数据类型与 C# 数据类型对照
Sql Server
C#
简写
bigint
System.Int64
long
tinyint
System.Byte
byte
binary(50)
System.Byte[]
byte[]
image
System.Byte[]
byte[]
varbinary(50)
System.Byte[]
byte[]
timestamp
System.Byte[]
byte[]
bit
System.Boolean
bool
char(10)
System.String
string
nchar(10)
System.String
string
ntext
System.String
string
nvarchar(50)
System.String
string
varchar(50)
System.String
string
text
System.String
string
date
System.DateTime
System.DateTime
datetime
System.DateTime
System.DateTime
datetime2(7)
System.DateTime
System.DateTime
smalldatetime
System.DateTime
System.DateTime
datetimeoffset(7)
System.DateTimeOffset
System.DateTimeOffset
time(7)
System.TimeSpan
System.TimeSpan
decimal(18,0)
System.Decimal
decimal
money
System.Decimal
decimal
numeric(18,0)
System.Decimal
decimal
smallmoney
System.Decimal
decimal
float
System.Double
double
int
System.Int32
int
real
System.Single
float
smallint
System.Int16
short
查看全文
相关阅读:
js学习(三)对象与事件
js学习(二)
js学习(一)
SSM+Redis结构框架及概述
javaBean、EJB、POJO
flex布局时的居中问题
layui后台管理系统的坑
基于element的模糊查询
vue数组的运用
uni-app 图片上传(uploadFile)
原文地址:https://www.cnblogs.com/firstcsharp/p/9041516.html
最新文章
HNTX_PC 代码总结
JQuery-常用小组件
CSS 效果汇总
【5】图解HTTP 笔记
【1】ShopNC 模仿笔记(一)
angular2在ts中使用transform转换时间格式
ionic2一个需求模块的文件该是这样子的
angular2 pipe实现搜索结果中的搜索关键字高亮
解决json包含html标签无法显示的问题
angular2升级到angular4历程
热门文章
Angular4.0.0正式发布,附新特性及升级指南
《TypeScript 中文入门教程》
React项目新手指南
Angular2 NgModule 模块详解
javascript 跨域请求详细分析(终极跨域解决办法)
内存和硬盘、硬盘缓存和虚拟内存的概念
设计模式
动态代理和拦截器
通过反射创建对象和调用方法
js学习(四)
Copyright © 2011-2022 走看看