从 IQueryable 生成 toList 时强制加载子实体

发布于 2024-12-14 17:37:58 字数 216 浏览 1 评论 0原文

我有以下代码。

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 技术交流群。

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

发布评论

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

评论(1

素手挽清风 2024-12-21 17:38:04

您可以使用 Lambda Sintax,以避免使用错误的导航属性名称。
首先,您需要包含名称空间 System.Data.Entity

var query = from foo in context.bar.Include(x => x.qux) 
            select foo 
var mylist = query.toList(); 

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

var query = from foo in context.bar.Include(x => x.qux) 
            select foo 
var mylist = query.toList(); 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文