Nhibernate 部分急切加载子集合

发布于 2024-10-14 15:17:03 字数 213 浏览 2 评论 0原文

如果我有一个父对象(Parent),它有一个 List(Of Child) 对象作为多一关系。是否可以返回一个父对象及其子对象的子集(热切加载)?我正在使用 VB 和 Criteria。

例如,如果父级 1 有 50 个子级(20 个类型 X 30 个类型 Y),并且我想返回父级以及仅包含类型 X 的集合。

我只想要一个大小为 20 且急切加载子级的集合?

谢谢

If I have a parent object (Parent) which has a List(Of Child) objects as a many-one relationship. Is it possible to return a Parent with a subset of it's child objects (eagerly loaded)? I am using VB and Criteria.

e.g. If Parent 1 has 50 children (20 type X 30 type Y) and I want to return the Parent with a collection containing only type X.

I only want a collection with a size of 20 with it's eagerly loaded children?

Thanks

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

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

发布评论

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

评论(1

挽心 2024-10-21 15:17:03

HQL查询。 fetch 关键字将与父级一起初始化子级。

from parent left join fetch parent.Children as child where child.type = X

HQL query. The fetch keyword will initialize the children along with the parent.

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