NHibernate 中的延迟负载是多少?

发布于 2024-11-09 13:09:53 字数 36 浏览 0 评论 0原文

NHibernate 中的延迟负载是多少?它的用途是什么?

What is the deffered load in NHibernate? what is it's usage?

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

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

发布评论

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

评论(3

南笙 2024-11-16 13:09:53

您指的是延迟加载吗?

本质上,这意味着直到您实际需要时才从数据库加载对象的数据。

如果您有一个大型对象图,例如“客户”>订单>订单项目>例如,如果您只是更改客户的姓氏,那么您可能不需要加载订单、订单项、产品中的所有数据。

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.

裂开嘴轻声笑有多痛 2024-11-16 13:09:53

我相信您指的是延迟加载

这篇文章 会帮助你理解

I believe you are referring to Lazy loading

This article would help you understand that

一影成城 2024-11-16 13:09:53

延迟加载是延迟加载的另一种命名。

延迟加载

了解延迟加载

如何在C#中实现延迟加载

Deferred loading is alternative naming of lazy loading.

Lazy loading

Understanding Lazy loading

How to implement lazy loading in C#

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