将 SqlDecimal 转换为十进制
问题是 SqlDecimal 数据类型比 CLR 固有的 Decimal 数据类型包含更多位。那么如何以最实用的方式在两者之间进行映射呢?这不会很好地工作:
SqlDecimal x = ...
decimal z = x.value; // can overflow
要让更多的数字通过,可以去掉尾随的零。但是,如果您接受转换带来的精度损失,人们会期望有一个函数来执行这种有损转换。
有没有?或者这里的最佳实践是什么?
我已经创建了一个函数,可以裁剪并删除尾随零来进行转换,但我宁愿使用标准 .NET BCL 函数(如果存在)。
The problem is that the SqlDecimal datatype packs more bits than the Decimal datatype which is native to the CLR. So how does one map between the two in the most practical way. This wohn't work that well:
SqlDecimal x = ...
decimal z = x.value; // can overflow
To have more numbers pass one can strip trailing zeros. But if you accept the loss of precision that the conversion gives you one would expect there'd be a function to do this lossy conversion.
Is there? Or what would be best practices here?
I've already made a function which both crops and removes trailing zeroes to do the conversion but I'd rather use a standard .NET BCL function if one such exists.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
SqlDecimal.Round
的精度与 .NETdecimal
类型匹配。Use
SqlDecimal.Round
with a precision that matches the .NETdecimal
type.