我的结构大致如下:
List<ProductLine> -> ID
Name
...
List<LineOfBusiness> -> ID
Name
...
List<Watchlist> -> ID
Name
ReportCount
监视列表可以存在于多个LoB下,但ReportCount仅用于该WatchList的该LoB下存在的报告计数。我在结构中需要它们,因为对于给定的关注列表,LoB中存在多少报告的数量在其他地方很重要。
我需要做的是获取不同WatchLists的列表(根据ID分组),并使ReportCount成为所有LoB中该监视列表的ReportCount的SUM。我无法让嵌套的选择逻辑正常工作。
答案 0 :(得分:8)
扁平化层次结构的技术是使用SelectMany
方法。你需要这样的东西:
var result = mainList.SelectMany(x => x.LineOfBusinessList)
.SelectMany(lob => lob.Watchlists)
.GroupBy(wl => wl.ID)
.Select(g => new {
WatchlistID = g.Key,
WatchlistName = g.First().Name,
ReportCount = g.Sum(item => item.ReportCount)
});
第一个SelectMany
调用会将原始列表转换为所有项目中所有LineOfBusiness
个对象的序列。第二个SelectMany
调用会将LineOfBusiness
个对象序列转换为包含所有Watchlist
个对象的序列。然后,您按Watchlist
对这些ID
进行分组,然后对它们执行实际查询。