持久性无知 Linq to SQL
我有一个现有的域层。 我想使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我不能保证我掌握了 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.
(并没有真正回答问题。)
.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.