MsSql数据类型(SqlDbType)名称对应.NET类型(Type)
MsSql数据类型(SqlDbType)名称对应.NET类型(Type)
C# Code: /// <summary> /// MsSql数据类型简称对应.NET类型 - MsSql数据类型(SqlDbType)名称对应.NET类型(Type) /// </summary> public static IDictionary<string, Type> SqlDbTypeName2NetTypeMapping { get { IDictionary<String, Type> map = new Dictionary<String, Type>(); map.Add("BigInt", typeof(System.Int64)); map.Add("Binary", typeof(System.Byte[])); map.Add("Bit", typeof(System.Boolean)); map.Add("Char", typeof(System.Char)); map.Add("Cursor", typeof(System.Object));//前端不用 map.Add("Date", typeof(System.DateTime)); map.Add("DateTime", typeof(System.DateTime)); map.Add("DateTime2", typeof(System.DateTime)); map.Add("DateTimeOffset", typeof(System.DateTimeOffset)); map.Add("Decimal", typeof(System.Decimal)); map.Add("Float", typeof(System.Double)); map.Add("Image", typeof(System.Byte[])); map.Add("Int", typeof(System.Int32)); map.Add("Money", typeof(System.Decimal)); map.Add("NChar", typeof(System.String)); map.Add("NText", typeof(System.String)); map.Add("NVarChar", typeof(System.String)); map.Add("Real", typeof(System.Double));//float类型,double map.Add("SmallDateTime", typeof(System.DateTime)); map.Add("SmallInt", typeof(System.Int16)); map.Add("SmallMoney", typeof(System.Decimal)); map.Add("sql_variant", typeof(System.Object));//sql_variant map.Add("Structured", typeof(System.Object));//前端不用 map.Add("Text", typeof(System.String)); map.Add("Time", typeof(System.DateTime)); map.Add("Timestamp", typeof(System.DateTime));//byte[], 可以定义为datetime map.Add("TinyInt", typeof(System.Int16)); map.Add("Udt", typeof(System.Object));//前端不用,UDT是用户自定义数据类型 map.Add("UniqueIdentifier", typeof(System.Guid)); map.Add("VarBinary", typeof(System.Byte[])); map.Add("VarChar", typeof(System.String)); map.Add("Variant", typeof(System.Object));//sql_variant map.Add("Xml", typeof(System.String)); return map; } } //来源:C/S框架网 | www.csframework.com | QQ:23404761 扫一扫加微信
参考文档:
将SQLServer数据类型转换为C#.Net类型 将SQLServer数据类型转换为.Net中SqlDbType类型 MsSQL数据库字段类型timeStamp应对应.net类型DateTime MsSQL/MySQL/Oracle三种常用数据库数据类型(Data Type)对应关系表 C#.NET数据类型(Type)与DbType的对应关系 DbType与C#.NET数据类型(Type)对应关系 MsSql数据类型(SqlDbType)与.NET类型(Type)对应关系 MySql数据类型(MySqlDbType)与.NET类型(Type)对应关系 Oracle数据类型(OracleDbType)与.NET类型(Type)对应关系 MySql数据类型(MySqlDbType)名称对应.NET类型(Type) Oracle数据类型(OracleDbType)名称对应.NET类型(Type) Oracle数据类型(OracleDbType)名称对应DbType类型 MsSQL数据类型(SqlDbType)名称对应DbType类型 MySQL数据类型(MySqlDbType)数据类型名称对应DbType类型 C#.NET 处理SQL特殊数据类型Geography/Geometry/Hierarchyid/XML
其它资料:
什么是C/S结构? | C/S框架核心组成部分 | C/S框架-WebService部署图 | C/S框架-权限管理 | C/S结构系统框架 - 5.1旗舰版介绍 | C/S结构系统框架 - 功能介绍 | C/S结构系统框架 - 产品列表 | C/S结构系统框架 - 应用展示(图) | 三层体系架构详解 | C/S架构轻量级快速开发框架 | C/S框架网客户案例 | WebApi快速开发框架 | C/S框架代码生成器 | 用户授权注册软件系统 | 版本自动升级软件 | 数据库底层应用框架 | CSFramework.CMS内容管理系统 | |