What is the correct lambda syntax for the following query?
SELECT a.Title, Count(b.Id) FROM a INNER JOIN b on a.Id = b.FK_Id GROUP BY a.Title
I know how to use join, but don’t have any idea how to use aggregate and group by in this situation.
Thank you.
Looks to me like:
Or in non-query syntax: