vote up 2 vote down star

Please help me with a sanity check. Assuming a many-to-many relationship:

Post, PostTagAssoc, Tag

What's the most succinct way (using LINQ to SQL) to get a result set showing, for each tag (or post), the aggregate number of posts (or tags) assigned to it?

Thanks!

flag

56% accept rate

2 Answers

vote up 0 vote down

This will also show those posts with 0 tags, and is a bit clearer in my opinion.

from p in db.Post select new {PostID = p.ID, TagCount = t.PostTagAssoc.Count}

link|flag
vote up 4 vote down
 from pta in db.PostTagAssoc
 group pta by pta.PostID into t
 select new {PostID = t.Key, TagCount=t.Count()}
link|flag

Your Answer

Get an OpenID
or

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