Disons que j'ai cette instruction SQL :
SELECT p.ParentId, COUNT(c.ChildId)
FROM ParentTable p
LEFT OUTER JOIN ChildTable c ON p.ParentId = c.ChildParentId
GROUP BY p.ParentId
Comment puis-je traduire cela en LINQ to SQL ? Je suis bloqué sur le COUNT(c.ChildId), le SQL généré semble toujours produire COUNT(*). Voici ce que j'ai jusqu'à présent :
from p in context.ParentTable
join c in context.ChildTable on p.ParentId equals c.ChildParentId into j1
from j2 in j1.DefaultIfEmpty()
group j2 by p.ParentId into grouped
select new { ParentId = grouped.Key, Count = grouped.Count() }
Merci !