复合键流畅的nhibernate
一个人可以在流畅的休眠状态下做到这一点吗?
当我尝试保存时,我提供配置文件和场景对象,并且 id 不为空。
Nhibernate 抱怨它不能为 ProfileID 列确保 NULL。 Fluent Nhibernate 不知道如何获取 Profile.ID ?
CompositeId().KeyProperty(x => x.Profile.ID, "ProfileID").KeyProperty(x => x.Scenario.ID, "ScenarioID");
Can one do this on a fluent nhibernate ?
When I try to save, I am profiding the profile and the scenario objects and the id's are not null.
Nhibernate complains that it can't insurt NULL for ProfileID column. Fluent Nhibernate doesn't know how to get to the Profile.ID ?
CompositeId().KeyProperty(x => x.Profile.ID, "ProfileID").KeyProperty(x => x.Scenario.ID, "ScenarioID");
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你可能应该使用这个:
You should probably use this instead: