最佳答案
假设我有这个 SQL:
SELECT p.ParentId, COUNT(c.ChildId)
FROM ParentTable p
LEFT OUTER JOIN ChildTable c ON p.ParentId = c.ChildParentId
GROUP BY p.ParentId
如何将其转换为 LINQ 到 SQL?我卡在了 COUNT (c. ChildId)上,生成的 SQL 似乎总是输出 COUNT (*)。以下是我目前得到的信息:
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() }
谢谢!