NHibernate Linq 提供程序中的 Fetch 与 FetchMany
NHibernate 预加载可以使用 Fetch
和 FetchMany
来完成,如 NHibernate Linq Eager Fetching(位于 Mike Hadlow 的博客上)。
这两种方法有什么区别,分别在什么情况下使用?
NHibernate eager loading can be done using Fetch
and FetchMany
, as described in NHibernate Linq Eager Fetching on Mike Hadlow's blog.
What is the difference between these two methods and under what circumstance would each be used?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Fetch
应用于引用,FetchMany
应用于集合。这一点特别重要,因为只有
FetchMany
可以与ThenFetchMany
组合来获取“孙子”集合。例子:
Fetch
should be used for references andFetchMany
for collections.This is particularly important because only
FetchMany
can be combined withThenFetchMany
to fetch "grandchildren" collections.Example: