将 SqlDecimal 转换为十进制

发布于 2024-11-18 07:38:11 字数 322 浏览 1 评论 0原文

问题是 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

温柔嚣张 2024-11-25 07:38:11

使用 SqlDecimal.Round 的精度与 .NET decimal 类型匹配。

Use SqlDecimal.Round with a precision that matches the .NET decimal type.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文