LINQ - 在 linq 查询中连接列表

发布于 2024-08-04 23:43:00 字数 385 浏览 4 评论 0原文

问题是如何返回包含所有父项的子项中的所有实体的 B 列表,而不使用下面的代码类型,我认为您必须能够在单个 linq 查询中实现相同的目标?

Class Parent {
    public Title,
    public children List<B>,
}

data = List<A>

var childLists = from x in x.Parents select x.children;             
List<B> output = new List<B>();

foreach (List<B> b in childLists)
    output.AddRange(b);

谢谢。

Question is How do a return a List of B with all the entities in children of all Parents without resorting to the type of code below, I was thinking u must be able to acheive the same within a single linq query?

Class Parent {
    public Title,
    public children List<B>,
}

data = List<A>

var childLists = from x in x.Parents select x.children;             
List<B> output = new List<B>();

foreach (List<B> b in childLists)
    output.AddRange(b);

Thanks.

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

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

发布评论

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

评论(3

回忆追雨的时光 2024-08-11 23:43:00
List<B> allChildren = x.Parents.SelctMany(p => p.children).ToList()
List<B> allChildren = x.Parents.SelctMany(p => p.children).ToList()
饭团 2024-08-11 23:43:00
var output = x.Parents.SelectMany(p => p.children).ToList();
var output = x.Parents.SelectMany(p => p.children).ToList();
自由如风 2024-08-11 23:43:00

使用嵌套

from parent in x.Parents 
  from child in parent.Children 
  select child;

using nesting

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