I have the following entity code, which returns all users and \"includes\" all of their sample requests:
var userQuery = from u in _IntranetContext.UserS
Just add another ordering parameter to the orderby:
var userQuery = from u in _IntranetContext.UserSet.Include("SampleRequests") orderby u.LastName ascending, u.SampleRequestId descending select u;