score:1

so, just to clarify, you have a table which includes essentially:

name : role
--------------
bob : leader
jane : scribe
bob : technician
bob : programmer
jane : entity
bob : adept

and you want to end up with:

bob : adept
bob : leader
bob : programmer
bob : technician
jane : entity
jane : scribe

if that's the case, then you're looking at an "orderby, thenby", which in linq i believe is indicated by a comma in that part of the linq statement:

orderby user.name, user.role

is that what you're looking for?


Related Query

More Query from same tag