Fluent NHibernate generated.Insert 无法按预期工作
我想使用以下映射从数据库
自动生成实体的数字:
Map(m => m.No).Not.Nullable().ReadOnly().Unique().Generated.Insert();
为什么没有为 int 类型的属性“No
”生成值?
这不是身份列。
I want to auto generate a number for an entity from the database
with the following mapping:
Map(m => m.No).Not.Nullable().ReadOnly().Unique().Generated.Insert();
Why is no value generated for the property "No
" of type int?
This is not an identity column.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你把它标记为ReadOnly()吗?所以它不会插入或更新该值。
You have it marked ReadOnly()? So it's not going to insert or update the value.