我们什么时候必须在 NHibernate 中使用急切加载?它的用途是什么?
我们什么时候必须在 NHibernate 中使用急切加载?它的用途是什么?
When must we use eager loading in NHibernate? What is it's usage?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
一种用法是当您要缓存或存储对象图时(例如在 ASP.NET 缓存中)。如果不存储整个图表,您将丢失有关分离对象的信息。当然,您可以重新附加对象,但这可能是到数据库的新往返。
如果您不急于加载集合,则需要触摸其中的每一个来调用延迟获取。在这些情况下,急切获取更有用。
One usage is when you will cache or store an object graph (in ASP.NET Cache for instance). If you don't store the whole graph, you would be missing information on a detached object. You can reattach objects of course, but that would probably be a new roundtrip to the database anyway.
If you don't eager load your collections, you would need to touch every one of the to invoke the lazy fetch. In those cases, an eager fetch is much more useful.
也许 Udi 的演讲可以帮助您做出决定。
http://www.infoq.com/presentations/Making-Roles-显式-Udi-Dahan
Maybe this presentation by Udi can help you decide.
http://www.infoq.com/presentations/Making-Roles-Explicit-Udi-Dahan