我有此SQL查询,但无法将其传输到linq查询实体框架。
??
答案 0 :(得分:1)
以下代码与linq中的查询等效:
var query = db.RentedBooks.GroupBy(x => new { x.Customer.FullName, x.CustomerId ,x.Customer.PhoneNumber })
.Select(x => new { ID = x.Key.CustomerId,
x.Key.FullName,
,x.Key.PhoneNumber,Books = x.Count() });