SQL Server中数据类型对应C#中数据类型
在SQL Server 2008中新建数据表的时候有33种数据类型可选,下面分别列举了这些类型对应的C#数据类型
//------------------------------------------------------------------------------
// .NET Framework 版本4.6目前不支持数据类型“hierarchyid”
// .NET Framework 版本4.6目前不支持数据类型“sql_variant”
// SQL Server限定同一张表中只能有一个时间戳(timestamp)列
//------------------------------------------------------------------------------ using System;
using System.Collections.Generic; public partial class TypeTest
{
public Nullable<long> bigint_Null { get; set; }
public long bigint { get; set; }
public byte[] binary_Null { get; set; }
public byte[] binary { get; set; }
public Nullable<bool> bit_Null { get; set; }
public bool bit { get; set; }
public string char_Null { get; set; }
public string @char { get; set; }
public Nullable<System.DateTime> date_Null { get; set; }
public System.DateTime date { get; set; }
public Nullable<System.DateTime> datetime_Null { get; set; }
public System.DateTime datetime { get; set; }
public Nullable<System.DateTime> datetime2_Null { get; set; }
public System.DateTime datetime2 { get; set; }
public Nullable<System.DateTimeOffset> datetimeoffset_Null { get; set; }
public System.DateTimeOffset datetimeoffset { get; set; }
public Nullable<decimal> decimal_Null { get; set; }
public decimal @decimal { get; set; }
public Nullable<double> float_Null { get; set; }
public double @float { get; set; }
public System.Data.Spatial.DbGeography geography_Null { get; set; }
public System.Data.Spatial.DbGeography geography { get; set; }
public System.Data.Spatial.DbGeometry geometry_Null { get; set; }
public System.Data.Spatial.DbGeometry geometry { get; set; }
public byte[] image_Null { get; set; }
public byte[] image { get; set; }
public Nullable<int> int_Null { get; set; }
public int @int { get; set; }
public Nullable<decimal> money_Null { get; set; }
public decimal money { get; set; }
public string nchar_Null { get; set; }
public string nchar { get; set; }
public string ntext_Null { get; set; }
public string ntext { get; set; }
public Nullable<decimal> numeric_Null { get; set; }
public decimal numeric { get; set; }
public string nvarchar_Null { get; set; }
public string nvarchar { get; set; }
public Nullable<float> real_Null { get; set; }
public float real { get; set; }
public Nullable<System.DateTime> smalldatetime_Null { get; set; }
public System.DateTime smalldatetime { get; set; }
public Nullable<short> smallint_Null { get; set; }
public short smallint { get; set; }
public Nullable<decimal> smallmoney_Null { get; set; }
public decimal smallmoney { get; set; }
public string text_Null { get; set; }
public string text { get; set; }
public Nullable<System.TimeSpan> time_Null { get; set; }
public System.TimeSpan time { get; set; }
public byte[] timestamp_Null { get; set; }
public Nullable<byte> tinyint_Null { get; set; }
public byte tinyint { get; set; }
public Nullable<System.Guid> uniqueidentifier_Null { get; set; }
public System.Guid uniqueidentifier { get; set; }
public byte[] varbinary_Null { get; set; }
public byte[] varbinary { get; set; }
public string varchar_Null { get; set; }
public string varchar { get; set; }
public string xml_Null { get; set; }
public string xml { get; set; }
}
CREATE TABLE [dbo].[TypeTest](
[bigint_Null] [bigint] NULL,
[bigint] [bigint] NOT NULL,
[binary_Null] [binary](50) NULL,
[binary] [binary](50) NOT NULL,
[bit_Null] [bit] NULL,
[bit] [bit] NOT NULL,
[char_Null] [char](10) NULL,
[char] [char](10) NOT NULL,
[date_Null] [date] NULL,
[date] [date] NOT NULL,
[datetime_Null] [datetime] NULL,
[datetime] [datetime] NOT NULL,
[datetime2_Null] [datetime2](7) NULL,
[datetime2] [datetime2](7) NOT NULL,
[datetimeoffset_Null] [datetimeoffset](7) NULL,
[datetimeoffset] [datetimeoffset](7) NOT NULL,
[decimal_Null] [decimal](18, 0) NULL,
[decimal] [decimal](18, 0) NOT NULL,
[float_Null] [float] NULL,
[float] [float] NOT NULL,
[geography_Null] [geography] NULL,
[geography] [geography] NOT NULL,
[geometry_Null] [geometry] NULL,
[geometry] [geometry] NOT NULL,
[hierarchyid_Null] [hierarchyid] NULL,
[hierarchyid] [hierarchyid] NOT NULL,
[image_Null] [image] NULL,
[image] [image] NOT NULL,
[int_Null] [int] NULL,
[int] [int] NOT NULL,
[money_Null] [money] NULL,
[money] [money] NOT NULL,
[nchar_Null] [nchar](10) NULL,
[nchar] [nchar](10) NOT NULL,
[ntext_Null] [ntext] NULL,
[ntext] [ntext] NOT NULL,
[numeric_Null] [numeric](18, 0) NULL,
[numeric] [numeric](18, 0) NOT NULL,
[nvarchar_Null] [nvarchar](max) NULL,
[nvarchar] [nvarchar](max) NOT NULL,
[real_Null] [real] NULL,
[real] [real] NOT NULL,
[smalldatetime_Null] [smalldatetime] NULL,
[smalldatetime] [smalldatetime] NOT NULL,
[smallint_Null] [smallint] NULL,
[smallint] [smallint] NOT NULL,
[smallmoney_Null] [smallmoney] NULL,
[smallmoney] [smallmoney] NOT NULL,
[sql_variant_Null] [sql_variant] NULL,
[sql_variant] [sql_variant] NOT NULL,
[text_Null] [text] NULL,
[text] [text] NOT NULL,
[time_Null] [time](7) NULL,
[time] [time](7) NOT NULL,
[timestamp_Null] [timestamp] NULL,
[tinyint_Null] [tinyint] NULL,
[tinyint] [tinyint] NOT NULL,
[uniqueidentifier_Null] [uniqueidentifier] NULL,
[uniqueidentifier] [uniqueidentifier] NOT NULL,
[varbinary_Null] [varbinary](max) NULL,
[varbinary] [varbinary](max) NOT NULL,
[varchar_Null] [varchar](max) NULL,
[varchar] [varchar](max) NOT NULL,
[xml_Null] [xml] NULL,
[xml] [xml] NOT NULL,
CONSTRAINT [PK_TypeTest] PRIMARY KEY CLUSTERED
(
[bigint] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] GO
以下是用于生成实体类(C#)的SQL脚本:
-- 表名
DECLARE @TableName NVARCHAR(50)
SET @TableName = 'SettlementStatistics' -- 用于控制生成的属于是否区分Null
-- 例:@IgnoreNull为TRUE时 public int Id { get; set; }
-- 例:@IgnoreNull为False时 public int? Id { get; set; }
DECLARE @IgnoreNull NVARCHAR(50)
SET @IgnoreNull = 'FALSE' -- 'TRUE/FALSE' DECLARE @ObjectId BIGINT
SET @ObjectId = OBJECT_ID(@TableName,N'U') IF OBJECT_ID(N'Tempdb..#Model',N'U') IS NOT NULL
DROP TABLE #Model
CREATE TABLE #Model(Field NVARCHAR(200)) DECLARE @MaxColumnIndex INT
SELECT @MaxColumnIndex = Max(column_id) FROM sys.columns WHERE object_id = @ObjectId DECLARE @Index INT = 1 WHILE @Index <= @MaxColumnIndex
BEGIN
INSERT INTO #Model(Field) VALUES('/// <summary>') IF EXISTS(SELECT * FROM sys.extended_properties WHERE major_id = @ObjectId AND minor_id = @Index)
BEGIN
INSERT INTO #Model(Field)
SELECT '/// ' + CONVERT(NVARCHAR(200),value) FROM sys.extended_properties WHERE major_id = @ObjectId AND minor_id = @Index
END
ELSE
BEGIN
INSERT INTO #Model(Field) VALUES('///')
END INSERT INTO #Model(Field) VALUES('/// </summary>') INSERT INTO #Model(Field)
SELECT 'public ' + (CASE [Types].name
WHEN 'image' THEN 'byte[]'
WHEN 'text' THEN 'string'
WHEN 'uniqueidentifier' THEN 'Guid'
WHEN 'date' THEN 'DateTime'
WHEN 'time' THEN 'TimeSpan'
WHEN 'datetime2' THEN 'DateTime'
WHEN 'datetimeoffset' THEN 'DateTimeOffset'
WHEN 'tinyint' THEN 'byte'
WHEN 'smallint' THEN 'short'
WHEN 'int' THEN 'int'
WHEN 'smalldatetime' THEN 'DateTime'
WHEN 'real' THEN 'float'
WHEN 'money' THEN 'decimal'
WHEN 'datetime' THEN 'DateTime'
WHEN 'float' THEN 'double'
WHEN 'ntext' THEN 'string'
WHEN 'bit' THEN 'bool'
WHEN 'decimal' THEN 'decimal'
WHEN 'numeric' THEN 'decimal'
WHEN 'smallmoney' THEN 'decimal'
WHEN 'bigint' THEN 'long'
WHEN 'geometry' THEN 'System.Data.Spatial.DbGeometry'
WHEN 'geography' THEN 'System.Data.Spatial.DbGeography'
WHEN 'varbinary' THEN 'byte[]'
WHEN 'varchar' THEN 'string'
WHEN 'binary' THEN 'byte[]'
WHEN 'char' THEN 'string'
WHEN 'timestamp' THEN 'byte[]'
WHEN 'nvarchar' THEN 'string'
WHEN 'nchar' THEN 'string'
WHEN 'xml' THEN 'string'
ELSE 'string' END)
+ (CASE WHEN 'FALSE'=@IgnoreNull AND [Columns].is_nullable=1
AND ',bigint,bit,date,datetime,datetime2,datetimeoffset,decimal,float,int,money,numeric,real,smalldatetime,smallint,smallmoney,time,tinyint,uniqueidentifier,' LIKE '%,'+[Types].name+',%'
THEN '?' ELSE '' END)
+ ' ' + [Columns].name + ' { get; set; }'
FROM sys.columns AS [Columns]
INNER JOIN sys.types AS [Types] ON [Columns].user_type_id = [Types].user_type_id
WHERE [Columns].object_id = @ObjectId AND [Columns].column_id = @Index IF @Index < @MaxColumnIndex INSERT INTO #Model(Field) VALUES('') SET @Index = @Index + 1
END SELECT * FROM #Model
DROP TABLE #Model
SQL Server中数据类型对应C#中数据类型的更多相关文章
- SQL Server、Oracle和MySQL中查出值为NULL的替换
参考文献: http://database.51cto.com/art/200803/67397.htm 正文 在SQL Server Oracle MySQL当数据库中查出某值为NULL怎么办? 1 ...
- ArcSDE for SQL Server安装及在ArcMap中创建ArcSDE连接
原文:ArcSDE for SQL Server安装及在ArcMap中创建ArcSDE连接 安装ArcSDE for SQL Server,最后一步成功后的界面如下: 在ArcMap中创建ArcSDE ...
- SQL Server 2008 R2 清空数据库中ldf日志文件
/************************************************************ * Sql Server 2008 R2 清空数据库中ldf日志文件 * 将 ...
- SQL Server的非聚集索引中会存储NULL吗?
原文:SQL Server的非聚集索引中会存储NULL吗? SQL Server的非聚集索引中会存储NULL吗? 这是个很有意思的问题,下面通过如下的代码,来说明,到底会不会存储NULL. --1.建 ...
- SQL Server 深入解析索引存储(中)
标签:SQL SERVER/MSSQL SERVER/数据库/DBA/索引体系结构/堆 概述 本篇文章是关于堆的存储结构.堆是不含聚集索引的表(所以只有非聚集索引的表也是堆).堆的 sys.parti ...
- 如何将SQL Server 2008库导入2000中
v\:* {behavior:url(#default#VML);} o\:* {behavior:url(#default#VML);} w\:* {behavior:url(#default#VM ...
- 《Pro SQL Server Internals, 2nd edition》中CHAPTER 7 Designing and Tuning the Indexes中的Clustered Index Design Considerations一节(译)
<Pro SQL Server Internals> 作者: Dmitri Korotkevitch 出版社: Apress出版年: 2016-12-29页数: 804定价: USD 59 ...
- SQL Server 在多个数据库中创建同一个存储过程(Create Same Stored Procedure in All Databases)
一.本文所涉及的内容(Contents) 本文所涉及的内容(Contents) 背景(Contexts) 遇到的问题(Problems) 实现代码(SQL Codes) 方法一:拼接SQL: 方法二: ...
- 在 SQL Server 数据库的 WHERE 语句中使用子查询
这是关于子查询语句的一系列文章中的第三篇.在这篇文章中我们将讨论WHERE语句中的子查询语句.其他的文章讨论了其他语句中的子查询语句. 本次课程中的所有例子都是基于Microsoft SQL Serv ...
- SQL Server 重新初始化系统数据库中的单引号问题
在最近的数据库跨机房迁移中,由于硬件的限制,需要滚动式地将数据库一台台迁移到新机房,先在新机房搭建一个新环境,将数据迁移过去,再将旧机房的机器下架搬到新机房,重新配置后用于下一轮的升级,重新配置过程中 ...
随机推荐
- SQL-基础学习3--通配符:LIKE,%,(_); 拼接:+,||,concat;
第六课 用通配符进行过滤 6.1 LIKE操作符 通配符本身实际上是SQL的WHERE子句中有特殊含义的字符,SQL支持几种通配符.为在搜索子句中使用通配符,必须使用LIKE操作符.LIKE指示DB ...
- SpringMVC整合fastdfs-client-java实现web文件上传下载
原文:http://blog.csdn.net/wlwlwlwl015/article/details/52682153 本篇blog主要记录一下SpringMVC整合FastDFS的Java客户端实 ...
- 如何查看pip安装包的所有版本;以及ipython的安装
安装ipython很简单,直接使用pip就行 比如mac环境下:pip install ipython:提示安装失败,原因是pip默认安装的ipython版本6.0+不适用python3.3以下版本 ...
- iOS 多线程技术2
iOS 多线程技术2 NSOperation NSInvocationOperation //创建一个队列 NSOperationQueue *queue = [[NSOperationQueue a ...
- react webapp 开发小结
1.监听props的方法 componentWillReceiveProps(nextProps) { // } 2.监听state的方法 3.props 传递的方法 <AlarmList {. ...
- Odoo multiprocessing
Odoo 在 非 windows 系统下, 支持 并行处理,开启 workers 配置项 即可. odoo有以下配置项 跟 并行处理有关 配置项 帮助信息 解说 limit_memor ...
- Odoo POS
Jeffery Q:913547235 Odoo 8 只支持 ean13条码 Barcode scanner相当于键盘,30ms 条码枪输出类型,QWERTY pos配置 ...
- HDU 1698 Just a Hook(线段树区间替换)
题目地址:pid=1698">HDU 1698 区间替换裸题.相同利用lazy延迟标记数组,这里仅仅是当lazy下放的时候把以下的lazy也所有改成lazy就好了. 代码例如以下: # ...
- HTML+CSS要点
1.td占据多行 / 列时,其挤开的 td 不写(但是包裹 td 的 tr 要写) 2. display:td 的元素中的文本默认垂直不居中(table中的td中的文本是垂直居中的) 3.th虽然定义 ...
- 工作总结 mvc 调页面传参数 参数值会一直保存 在这个页面上的
意思是 两个页面均可以 获取到id 和 goodsType 都可以获取 id goodsType post 的 还多带点属性值 form data 页面上带过去的 (新增 编辑)