NHibernate 中的延迟负载是多少?
NHibernate 中的延迟负载是多少?它的用途是什么?
What is the deffered load in NHibernate? what is it's usage?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
NHibernate 中的延迟负载是多少?它的用途是什么?
What is the deffered load in NHibernate? what is it's usage?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
您指的是延迟加载吗?
本质上,这意味着直到您实际需要时才从数据库加载对象的数据。
如果您有一个大型对象图,例如“客户”>订单>订单项目>例如,如果您只是更改客户的姓氏,那么您可能不需要加载订单、订单项、产品中的所有数据。
Are you referring to Lazy Loading?
Essentially it means that the data for the object is not loaded from the database until you actually need it.
If you had a large object graph for example Customers > Orders > OrderItems > Product you might not need to load all the data from Orders, OrderItems, Product if you are just altering the customers last name for example.
我相信您指的是延迟加载
这篇文章 会帮助你理解
I believe you are referring to Lazy loading
This article would help you understand that
延迟加载是延迟加载的另一种命名。
延迟加载
了解延迟加载
如何在C#中实现延迟加载
Deferred loading is alternative naming of lazy loading.
Lazy loading
Understanding Lazy loading
How to implement lazy loading in C#