问题是如何在不使用下面的代码类型的情况下返回所有父母的孩子中的所有实体的 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);
谢谢。