I have Sql query:
SELECT News.NewsId, News.Subject, Cm.Cnt FROM dbo.News
LEFT JOIN
(SELECT Comments.OwnerId, COUNT(Comments.OwnerId) as Cnt
FROM Comments
WHERE Comments.CommentType = 'News'
Group By Comments.OwnerId) Cm
ON Cm.OwnerId = News.NewsId
But I want linq-to-sql query, how I can convert this to linq?