Can someone convert this query to linq2sql for me? Trying to teach myself linq to see if I want to use it for a small project, and getting hung up on the smallest details...
SELECT
Warrant.ID,
Warrant.MeetingDate,
Warrant.MeetingType,
Warrant.Notes,
COUNT(WarrantArticles.ID) AS Cnt
FROM Warrant INNER JOIN WarrantArticles ON Warrant.ID = WarrantArticles.WarrantID
group by Warrant.ID, Warrant.MeetingDate, Warrant.MeetingType, Warrant.Notes