VS2008实体框架LazyLoading不可用
我在我的 asp.net mvc2 应用程序中使用 ado 实体框架。我想设置上下文的 LazyLoadingenabled=false。但这个选项不可用。它给出了 contextoptions 的错误。
如何将此属性添加到我的 .edmx 文件中?我用的是vs2008,需要升级吗?
I am using ado entity framework in my asp.net mvc2 application. I want to set context's LazyLoading enabled=false. But this options is not available. its giving error for contextoptions.
How do I add this attributes to my .edmx file? do i need any upgrade as I am using vs2008?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
EFv1 (.NET 3.5) 不支持透明延迟加载,因此您不需要(也不能)更改任何设置。 EFv1 中的延迟加载始终为 通过调用导航属性上的
Load
方法手动触发。EFv1 (.NET 3.5) doesn't support transparent lazy loading so you don't need (and you can't) to change any settings. Lazy loading in EFv1 is always triggered manually by calling
Load
method on navigation property.