从 IQueryable 生成 toList 时强制加载子实体
我有以下代码。
var query = from foo in context.bar.Include("qux")
select foo
var mylist = query.toList();
当我尝试访问 foo.qux 时,它不可用!
那么,如何要求实体框架在转换为 List 时包含子实体? 提前致谢
I have the following code.
var query = from foo in context.bar.Include("qux")
select foo
var mylist = query.toList();
When i try to access to foo.qux, it's not available !
So, how to ask Entity Framework to include the child entity when converting to List ?
Thanks by advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 Lambda Sintax,以避免使用错误的导航属性名称。
首先,您需要包含名称空间 System.Data.Entity
You can use the Lambda Sintax, to avoid using the wrong name of the navigation property.
First you need to include the namespace System.Data.Entity