私はこのクエリを持っています:
return (from r in this.Requests where r.Status == "Authorised" from i in r.Items select i).Sum(i => i.Value);
私は今それを好むので、それをラムダに変換しようとしました。
var sum = Requests.Where(x=>x.Status == "Authorised").Select(x=>x.Items).Sum(x=>x.Value);
--> そして、ここにValue
アイテムがありません。理由はありますか?