将 .NET 小数存储到 MySQL 中的最佳字段定义是什么?
I need to store decimals into MySQL, which can have a varying precision. Therefore I would be interested to know which MySQL field type is absolutely equivalent to .NET's decimal structure, if any.
I plan to use Dapper as a lightweight ORM.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
.net 小数在底层可以是不同的数据类型。
警告
请注意,根据乔恩·斯基特 (Jon Skeet) 的说法,
decimal
可以通过多种方式声明,但在幕后始终是FLOAT
,并且会带来所有舍入错误,您有已被警告。请参阅:.NET 中的 SQL 十进制等效项
MySQL 的
DECIMAL<如果为 /code> 分配更大的精度,则会占用更多空间。
来自手册:http://dev. mysql.com/doc/refman/5.5/en/ precision-math-decimal-changes.html
最大位数为 65,除以 9 = 8 个字节,即 INT128。
The .net decimal can be different datatypes under the hood.
Warning
Note that according to Jon Skeet,
decimal
can be declared in lots of ways, but will always be aFLOAT
under the hood, with all the rounding errors that brings, you have been warned.See: SQL decimal equivalent in .NET
MySQL's
DECIMAL
takes up more space if you assign it a larger precision.From the manual: http://dev.mysql.com/doc/refman/5.5/en/precision-math-decimal-changes.html
The largest number of digits is 65, divided by 9 = 8 bytes, an INT128.