每次 sql 调用检索具有子项的实体。 ADO.NET实体框架

发布于 2024-08-31 11:00:27 字数 382 浏览 4 评论 0原文

我有两个表:A 和 A。 BB

{ B1:字段1, B2:场2, ... }

一个 { 孩子们:B名单, A1:字段1, A2:字段2, 我

想检索具有相关“B”实体的“A”实体,如下所示:

DataContext.A.Select( a => new MySubset( A1 = a.A1, Children = a.Children.Select(b => b .B1).ToList());

但是 EF 无法将 ToList 转换为 SQL,因此我必须在查询中的每个实例中调用 ToList() ,从而产生额外的网络调用

先感谢您。

I have two tables: A & B

B {
B1: Field1,
B2: Field2,
...
}

A
{
Children: List of B,
A1: Field1,
A2: Field2,
}

I want to retrieve "A" entities with related "B" entities like this:

DataContext.A.Select( a => new MySubset( A1 = a.A1, Children = a.Children.Select(b => b.B1).ToList());

But EF can't translate ToList into SQL, so i have to call ToList() per each instance in query producing additional network call.

How can I avoid this?

Thank you in advance.

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

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

发布评论

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

评论(2

折戟 2024-09-07 11:00:27

您可以使用 .Ininclude 语句进行预先加载:

http://msdn.microsoft.com/en-us/library/bb896272.aspx

说明

假设您使用的是 VS2010 并且启用了延迟加载:

当您最初加载 A 时,会出现一个B 的集合显然在 A 处等待着你,但事实并非如此,它不是一个 List<>,它是一个知道如何在你请求时提供 B 的对象。仅当您访问此集合时,EF 才会往返数据库以获取它。

但如果您使用 .Include(),您可以请求它在获取 A 的同时获取 B。

You can use an .Include statement to do eager loading:

http://msdn.microsoft.com/en-us/library/bb896272.aspx

Explanation

Assuming you are on VS2010 and Lazy Loading is enabled:

When you load A initially there's a collection of B's apparently waiting for you off A, but it's not really, it's not a List<>, its an object that knows how to provide the B's when you ask for them. Only when you access this collection will EF do the round trip to the database to fetch it.

But if you use .Include() you can request that it fetches B at the same time as it fetches A.

真心难拥有 2024-09-07 11:00:27

我会在 MySubset 的构造函数中使用 IEnumerable 而不是 List。

或者:不是通过 .ToList() 创建列表,而是通过 new List(a.Children.Select(b => b.B1))

I would use IEnumerable instead of List in the constructor of MySubset.

Or: Create the List not by .ToList(), but by new List<T>(a.Children.Select(b => b.B1))

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