Fluent NHibernate - 父子之间的单向映射

发布于 2024-11-15 04:15:56 字数 82 浏览 1 评论 0原文

是否可以在父级加载时将引用传递给其子级,而无需从子级返回到父级的关系?

我不希望为此目的使用映射属性(即不希望为此目的使用双向关系)。

Is it possible to pass a reference at load time of a parent to it's children without a relationship back to the parent from the child?

I would prefer to NOT have a mapped property for this purpose (i.e. prefer not to use bi-directional relationships for this purpose).

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

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

发布评论

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

评论(1

看春风乍起 2024-11-22 04:15:56

您可能可以使用链接表来完成此操作,但是您必须通过代码强制执行一对多,否则它很容易变成多对多。链接表的要点是它保留父对象与其子对象之间的关联,而不是子对象本身。

You could probably do it with a linking table but you'd have to enforce one-to-many via code otherwise it could easily become a many-to-many. The jist of the linking table would be that it keeps the association between the parent and its children, rather than the child object itself.

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