CSRobot gen:mssql-c#类型映射
2022/2/4 19:27:00
本文主要是介绍CSRobot gen:mssql-c#类型映射,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
CSRobot的gen命令,有一个参数--map,是指数据库字段类型到实体类型映射,本例是sql server到csharp的类型映射:
SQL Server |
C# |
bigint |
Int64 |
binary |
Byte[] |
bit |
Boolean |
char |
String,Char[] |
date |
DateTime |
datetime |
DateTime |
datetime2 |
DateTime |
datetimeoffset |
DateTimeOffset |
Decimal |
小数 |
FILESTREAM attribute (varbinary(max)) |
Byte[] |
FLOAT 【-1.79E + 308 至 -2.23E - 308、0 以及 2.23E - 308 至 1.79E + 308】 |
Double 【±5.0 × 10−324 到 ±1.7 × 10308】 |
image |
Byte[] |
int |
Int32 |
money |
小数 |
nchar |
String,Char[] |
ntext |
String,Char[] |
numeric |
小数 |
nvarchar |
String,Char[] |
real |
Single或float |
rowversion |
Byte[] |
smalldatetime |
DateTime |
smallint |
Int16 |
smallmoney |
小数 |
sql_variant |
Object 2 |
text |
String,Char[] |
time |
TimeSpan |
timestamp |
Byte[] |
tinyint |
Byte |
uniqueidentifier |
Guid |
varbinary |
Byte[] |
varchar |
String,Char[] |
xml |
Xml |
在表格有“小数”字样,这里的意思是要根据数据库定义的具体精度,转换成对应的c#小数类型,下例是c#中三种小数类型的范围和精度,共参考:
static void Main(string[] args) { Console.WriteLine("double:"); double d1 = 0.0123456789012345678901234567890123456789d; Console.WriteLine(d1); double d2 = 1234567890123456789012345678901234567890.0123456789012345678901234567890123456789d; Console.WriteLine(d2); Console.WriteLine(); Console.WriteLine("float:"); float f1 = 0.0123456789012345678901234567890123456789f; Console.WriteLine(f1); float f2 = 123456789012345678901234567890123456789.0123456789012345678901234567890123456789f; Console.WriteLine(f2); Console.WriteLine(); Console.WriteLine("decimal:"); decimal m1 = 0.0123456789012345678901234567890123456789m; Console.WriteLine(m1); decimal m2 = 12345678901234567890123456789.0123456789012345678901234567890123456789m; Console.WriteLine(m2); }
结果:
double:
0.012345678901234568
1.2345678901234568E+39
float:
0.012345679
1.2345679E+38
decimal:
0.0123456789012345678901234568
12345678901234567890123456789
另外对于sqlserver中的一复杂类型,在c#中就得定义具体的实体类来对应了。
想要更快更方便的了解相关知识,可以关注微信公众号
这篇关于CSRobot gen:mssql-c#类型映射的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2022-03-01沐雪多租宝商城源码从.NetCore3.1升级到.Net6的步骤
- 2024-12-06使用Microsoft.Extensions.AI在.NET中生成嵌入向量
- 2024-11-18微软研究:RAG系统的四个层次提升理解与回答能力
- 2024-11-15C#中怎么从PEM格式的证书中提取公钥?-icode9专业技术文章分享
- 2024-11-14云架构设计——如何用diagrams.net绘制专业的AWS架构图?
- 2024-05-08首个适配Visual Studio平台的国产智能编程助手CodeGeeX正式上线!C#程序员必备效率神器!
- 2024-03-30C#设计模式之十六迭代器模式(Iterator Pattern)【行为型】
- 2024-03-29c# datetime tryparse
- 2024-02-21list find index c#
- 2024-01-24convert toint32 c#