I have the following entity code, which returns all users and \"includes\" all of their sample requests:
var userQuery = from u in _IntranetContext.UserS
Edit: Treed by <15 seconds.
var userQuery = from u in _IntranetContext.UserSet.Include("SampleRequests") orderby u.LastName ascending, u.SampleRequestId descending select u;