Do you plan to have a generic method that can convert the StoreRequestParameters parameter passed in to a Controller or ApiController to an IQueryable<T>?

KendoUI MVC has this and all you have to do is something like this:

var queryableOutput = storeParameter.ToQueryable<Foo>(queryableInput)

This would basically do the where, take, skip, orderby, etc to the underlying data store...

Thanks