复合键流畅的nhibernate

发布于 2024-11-02 00:45:22 字数 291 浏览 1 评论 0原文

一个人可以在流畅的休眠状态下做到这一点吗?

当我尝试保存时,我提供配置文件和场景对象,并且 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 技术交流群。

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

发布评论

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

评论(1

不一样的天空 2024-11-09 00:45:22

你可能应该使用这个:

CompositeId()
    .KeyReference(x => x.Profile, "ProfileID")
    .KeyReference(x => x.Scenario, "ScenarioID");

You should probably use this instead:

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