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

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!
|
|
Please help me with a sanity check. Assuming a many-to-many relationship:
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!
|
||
|
|
|
|
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} |
||
|
|
|
|
|
||
|
|