在 HQL 中转换为十进制(38,12)
我正在将 NHibernate 与 Active Record 结合使用,并尝试对列求和并返回结果。该列是十进制的(38,12)。然而,当我这样做时,我得到 SQL 异常:
“将数字转换为数据类型数字时出现算术溢出错误”
我运行了探查器,可以看到问题是生成的 SQL 查询正在使用十进制(19,5)。
关于如何解决这个问题有什么想法吗?我在下面列出了我的 HQL 的一部分:
select new MyObject(
cast(sum(abs(oo.Total)) as decimal)
)
from OtherObject oo
I'm using NHibernate with Active Record and I'm trying to sum up a column and return the result. The column is a decimal(38,12). However when I do this I get the SQL Exception:
"Arithmetic overflow error converting numeric to data type numeric"
I've ran the profiler and can see the problem is that the SQL query being generated is using decimal(19,5).
Any thoughts on how to get round this? I've included part of my HQL below:
select new MyObject(
cast(sum(abs(oo.Total)) as decimal)
)
from OtherObject oo
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论