0
我們如何將where條件添加到linq subselect查詢中。linq where subsection的條件
即
List<CallLog> callLog = CallLog.SampleData();
List<Contacts> contacts = Contacts.SampleData();
var q = from call in callLog
where call.Incoming == true
group call by call.Number into g
select new contacts {
contact.FirstName = g.FirstName,
contact.LastName = g.LastName,
Count = g.Count(),
Avg = g.Average(c => c.Duration) <--- WHERE c.Duration > 5,
Total = g.Sum(c => c.Duration) <--- WHERE c.Duration >= 60
};
我們如何添加一個 「Where條件」,如上圖所示的LINQ聲明?