Nhibernate:仅保存两个十进制数的所有十进制属性

发布于 2024-10-26 13:16:52 字数 62 浏览 1 评论 0原文

有没有办法告诉 nhibernate 保存所有只有两位小数的数字属性?我正在使用流畅的 nhibernate。

Is there a way to tell nhibernate to save all the numeric properties with only two decimals? I'm using fluent nhibernate.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

梦巷 2024-11-02 13:16:52

除了@gsco的答案之外,如果您需要跨类应用所有数字属性,您还可以定义 PropertyConvention 并指定覆盖。

In addition to @gsco's answer if you need to apply this across classes for all numeric properties, you can define a PropertyConvention and specify the override.

信愁 2024-11-02 13:16:52

您需要在映射中执行类似的操作。

Map(x => x.Amount).Precision(8).Scale(2);

You need to do something similar to this in your mapping.

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