在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#中数据类型的更多相关文章

  1. SQL Server、Oracle和MySQL中查出值为NULL的替换

    参考文献: http://database.51cto.com/art/200803/67397.htm 正文 在SQL Server Oracle MySQL当数据库中查出某值为NULL怎么办? 1 ...

  2. ArcSDE for SQL Server安装及在ArcMap中创建ArcSDE连接

    原文:ArcSDE for SQL Server安装及在ArcMap中创建ArcSDE连接 安装ArcSDE for SQL Server,最后一步成功后的界面如下: 在ArcMap中创建ArcSDE ...

  3. SQL Server 2008 R2 清空数据库中ldf日志文件

    /************************************************************ * Sql Server 2008 R2 清空数据库中ldf日志文件 * 将 ...

  4. SQL Server的非聚集索引中会存储NULL吗?

    原文:SQL Server的非聚集索引中会存储NULL吗? SQL Server的非聚集索引中会存储NULL吗? 这是个很有意思的问题,下面通过如下的代码,来说明,到底会不会存储NULL. --1.建 ...

  5. SQL Server 深入解析索引存储(中)

    标签:SQL SERVER/MSSQL SERVER/数据库/DBA/索引体系结构/堆 概述 本篇文章是关于堆的存储结构.堆是不含聚集索引的表(所以只有非聚集索引的表也是堆).堆的 sys.parti ...

  6. 如何将SQL Server 2008库导入2000中

    v\:* {behavior:url(#default#VML);} o\:* {behavior:url(#default#VML);} w\:* {behavior:url(#default#VM ...

  7. 《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 ...

  8. SQL Server 在多个数据库中创建同一个存储过程(Create Same Stored Procedure in All Databases)

    一.本文所涉及的内容(Contents) 本文所涉及的内容(Contents) 背景(Contexts) 遇到的问题(Problems) 实现代码(SQL Codes) 方法一:拼接SQL: 方法二: ...

  9. 在 SQL Server 数据库的 WHERE 语句中使用子查询

    这是关于子查询语句的一系列文章中的第三篇.在这篇文章中我们将讨论WHERE语句中的子查询语句.其他的文章讨论了其他语句中的子查询语句. 本次课程中的所有例子都是基于Microsoft SQL Serv ...

  10. SQL Server 重新初始化系统数据库中的单引号问题

    在最近的数据库跨机房迁移中,由于硬件的限制,需要滚动式地将数据库一台台迁移到新机房,先在新机房搭建一个新环境,将数据迁移过去,再将旧机房的机器下架搬到新机房,重新配置后用于下一轮的升级,重新配置过程中 ...

随机推荐

  1. Android中使用SDcard进行文件的读取

    来自:http://www.cnblogs.com/greatverve/archive/2012/01/13/android-SDcard.html 平时我们需要在手机上面存储想音频,视频等等的大文 ...

  2. Android view 数据缓存

    Android中经常需要用到view数据的缓存,比如我们希望EditText 在被切到别的界面的时候,输入的数据要仍保持不变. 参考代码: /* 缓存textview */ public class ...

  3. ActiveX控件打包成Cab置于网页中自动下载安装 [转]

    http://blog.sina.com.cn/s/blog_520c32270100nopj.html 做过ActiveX控件的朋友都知道,要想把自己做的ActiveX控件功能放在自己的网页上使用, ...

  4. PS常用平面设计制作尺寸

      PHOTPSHOP照片处理    数码照片尺寸 平面设计常用制作尺寸 名片 横版:90*55mm<方角> 85*54mm<圆角> 竖版:50*90mm<方角> ...

  5. sql分级汇总

    --測试数据 create table tb([DB-ID] varchar(10),ENTITY varchar(10),DATE varchar(10),[CUST-NO] int,AMOUNT ...

  6. Solaris 系统启动与关闭

    忘掉root密码 更改内核参数后,重启进不了系统 复制---进入单用户模式----恢复文件 系统突然死机,如何尽量减少数据丢失 Sync 同步命令.将内存内容输入到硬盘,相当于保存文档.   Unix ...

  7. leetcode第一刷_Symmetric Tree

    必须承认,一開始这道题我是不会做的.由于我心目中的树遍历仅仅能用一个节点发起.多么天真而无知. 我想不通如何同一时候遍历两颗子树.由于根节点一定是一个啊.但是,作为对称轴上的它.从一開始就不应该被考虑 ...

  8. 基于multiprocessing和threading实现非阻塞的GUI界面显示

    ========================================================= 环境:python2.7.pyqt4.eric16.11 热点:multiproce ...

  9. angularJS contenteditable 指令双向绑定

    项目遇到需求有点奇葩:双击div使其可编辑,失去焦点后进行数据绑定 通过自定义指令完成 好了上代码: .directive('contentEditable', function() { return ...

  10. 对canvas arc()中counterclockwise参数的一些误解

    一直没有很细心地去研究CanvasRenderingContext2D对象的arc方法,对它的认识比较模糊,导致犯了一些错误,特发此文,以纠正之前的错误理解. arc()方法定义如下: arc() 方 ...