I have a bunch of entities I'd like to list in a wiki-like manner, where they would be organized by the first letter of their title, followed by a count of how many entities exist per letter. So, something like:
A (5)
B (7)
C (4)
etc.
I'm not sure how to go about it, though. A rough pseudocode version:
from g in Games select g.title, /* count */ where /* g.title.firstLetter */ ASC The commented out parts are where I'm stuck. Any ideas?