从代理延迟加载 POCO 实体

发布于 2024-11-03 09:46:59 字数 334 浏览 0 评论 0原文

我正在尝试为数据库中已知的实体创建 POCO 代理 - 类似于 nHibernate Session.Load()。

我想设置 ID 值,然后如果在实体上访问任何其他属性,则其他属性将再次延迟加载,类似于 nHibernate Session.Load()

我尝试使用 ObjectContext 创建代理.CreateObject(),设置ID值,并将其附加到上下文。但这些属性在访问时不会延迟加载。然而,导航属性可以延迟加载。

我希望在需要实体并知道 ID,但又不想强制额外的数据库命中来加载实体的情况下使用此功能。我还想确保在需要时可以加载这些属性。

实体框架 4 可以实现这一点吗?

I'm trying to create a POCO proxy for an entity already known to be in the database--similar to the nHibernate Session.Load().

I'd like to set the ID value and then if any other properties are accessed on the entity, the other properties are lazy-loaded--again, similar to the nHibernate Session.Load()

I've tried creating a proxy with ObjectContext.CreateObject(), setting the ID value, and attaching it to the context. But the properties don't lazy-load when accessed. The navigation properties, however, will lazy-load just fine.

I'd like this functionality for cases where I need an entity and know the ID, but don't want to force an extra database hit to load the entity. I also want to ensure that the properties can be loaded in the event that they are needed.

Is this possible with Entity Framework 4?

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

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

发布评论

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

评论(1

挽梦忆笙歌 2024-11-10 09:47:00

不,这是不可能的。原因是实体框架仅支持导航属性的延迟加载。您不能延迟加载标量或复杂属性。您必须从数据库加载实体才能填充它们。

No it is not possible. The reason is that Entity framework supports only lazy loading of navigation properties. You cannot lazy load scalar or complex properties. You must load the entity from database to get them filled.

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