3

我有这个查询:

return (from r in this.Requests where r.Status == "Authorised" from i in r.Items select i).Sum(i => i.Value);

我尝试将它转换为 lambda,因为我现在更喜欢这样,所以我这样做了:

var sum = Requests.Where(x=>x.Status == "Authorised").Select(x=>x.Items).Sum(x=>x.Value);--> 这里我没有Value项目,有什么想法吗?

4

1 回答 1

5

你需要SelectMany而不是Select. 您的查询基本上相当于:

return this.Requests
           .Where(r => r.Status == "Authorised")
           .SelectMany(r => r.Items)
           .Sum(i => i.Value);

请注意,您的原始查询在多行上也会更清晰......

于 2012-12-05T10:48:57.663 回答