vote up 2 vote down star
4

Let's say I have this SQL:

SELECT p.ParentId, COUNT(c.ChildId)
FROM ParentTable p
  LEFT OUTER JOIN ChildTable c ON p.ParentId = c.ChildParentId
GROUP BY p.ParentId

How can I translate this into LINQ to SQL? I got stuck at the COUNT(c.ChildId), the generated SQL always seems to output COUNT(*). Here's what I got so far:

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() }

Thank you!

flag

77% accept rate

2 Answers

vote up 8 vote down check
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(t=>t.ChildId != null) }
link|flag
OK, that works, but why? How do you think through it? How does not counting null values give us the same as COUNT(c.ChildId)? Thanks. – pbz Mar 29 at 22:36
This is how SQL works. COUNT(fieldname) will count the rows in that field that are not null. Maybe I don't get your question, please clarify if that's the case. – Mehrdad Afshari Mar 29 at 22:38
I guess I always thought about it in terms of counting rows, but you are correct, only the non-null values are counted. Thanks. – pbz Mar 29 at 22:46
1  
.Count() will generate COUNT(*) which will count all the rows in that group, by the way. – Mehrdad Afshari Mar 29 at 22:47
I've been trying to get this work for hours, thank you soo much! :-) – Ian Devlin Sep 15 at 18:19
vote up 0 vote down
 (from p in context.ParentTable     
  join c in context.ChildTable 
    on p.ParentId equals c.ChildParentId into j1 
  from j2 in j1.DefaultIfEmpty() 
     select new { 
          ParentId = p.ParentId,
         ChildId = j2==null? 0 : 1 
      })
   .GroupBy(o=>o.ParentId) 
   .Select(o=>new { ParentId = o.key, Count = o.Sum(p=>p.ChildId) })
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.