Nhibernate:仅保存两个十进制数的所有十进制属性
有没有办法告诉 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
除了@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.
您需要在映射中执行类似的操作。
You need to do something similar to this in your mapping.