I have a generic method where I take an IQueryable<T> and returns an IOrderedQuerable<T> using Linq-to-Entities.
A simple input.OrderBy(p => p.something) won't work since I don't know any property of T (and I cannot constrain this to an interface).
Casting the result to (IOrderedQuerable<T>) seems to work until you try do actually use it with a .Skip() or .Take(), at which point you get a runtime error.
I guess I theoretically could use reflection and see if I find an int or something and build an expression to use as ordering, but that seems very dirty.
Any ideas?
IQueryable<T>to anIOrderedQueryable<T>when you haven't applied any sort? – Kirk Woll Jan 25 at 15:03input.OrderBy(t=>0);or some other constant may be enough to do it, but ask yourself why you're trying to produce an "Ordered" queryable that isn't actually ordered in any meaningful way. – Damien_The_Unbeliever Jan 25 at 15:04IOrderedQueryablewithout a real ordering, then how do you know you won't get results in different arbitrary orders for each page? i.e., you might get items from page 1 again in page 3 if they happened to come back later in the list that time. That's why that requirement is there - it only make sense to do paging operations if you have an unambigious order. – mellamokb Jan 25 at 15:06