Currently in Linq to Entities we require OrderBy clause before Skip. We could try lifting that requirement, to resemble Linq to Objects more. Moreover we don't require Ordeby when doing other paging operations (Take, FirstOrDefault). Also we don't complain if result of the Orderby yields non-deterministic results (i.e. order by constant or by value that happens to be repeating itself)
↧