持久性无知 Linq to SQL

发布于 2024-07-22 02:15:47 字数 144 浏览 7 评论 0原文

我有一个现有的域层。 我想使用 Linq to SQL 开发持久层。 我目前正在使用外部地图文件。 我正在尝试对我的子集合使用延迟加载,但没有成功。 有没有一种方法可以使用 Linq to SQL 实现延迟加载,但不使用 EntitySet 或 EntityRef。

I have an existing domain layer. I want to develop the persistence layer using Linq to SQL. I am currently using an external map file. I am trying to use lazy loading for my child collections but am unsuccessful. Is there a way to implement lazy loading using Linq to SQL but without using EntitySet or EntityRef.

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

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

发布评论

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

评论(2

以酷 2024-07-29 02:15:47

我不能保证我掌握了 LTS 的最新开发,但以前您必须使用 EntitySet/EntityRef 来实现延迟加载。

如果你想要一个 PI 模型,你最好的选择是 NHibernate。

I can't guarantee that I'm up to the latest development of LTS, but previously you had to you use EntitySet/EntityRef to get lazy loading.

You're best bet is NHibernate if you want a PI-model.

忆依然 2024-07-29 02:15:47

(并没有真正回答问题。)

.NET 4 中的实体框架(又名 LINQ to Entities)包括持久性无知支持,例如能够映射到 POCO(普通旧 CLR 对象1)。 请参阅 “抢先预览:实体框架 4.0 中的持久性无知和 POCO”

1 即不需要基类或属性。

(Not really answering the question.)

Entity Framework (aka. LINQ to Entities) in .NET 4 includes persistence ignorance support e.g. being able to map to POCO (Plain Old CLR Object1). See "Sneak Preview: Persistence Ignorance and POCO in Entity Framework 4.0 ".

1 I.e. Not requiring a base class or attributes.

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