如何将此sql查询转换为linq查询
select c.FirstName, count(*) from [dbo].[Order] o
join Customer c
on o.CustomerId = c.Id
group by c.FirstName
having c.FirstName like 'P%';
这是我到目前为止尝试过的。
var query = from o in _context.Set<Order>()
join c in _context.Set<Customer>()
on o.CustomerId equals c.Id
group c by c.FirstName;
我无法编写具有查询和类似查询的内容。
希望获得积极回应 谢谢!