We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Offer a way to query table records with better performance using the IQueryable<T> interface, somewhat paving the way for an EF Core implementation.
IQueryable<T>
IEnumerable<T>
Select
IOrderedQueryable<T>
Some guides on how to implement IQueryable<T>/IOrderedQueryable<T>:
https://putridparrot.com/blog/creating-a-custom-linq-provider/
The text was updated successfully, but these errors were encountered:
Even without EF Core, IQueryable with .Where and .OrderBy would be invaluable and expected in the .net world.
Sorry, something went wrong.
This is the plan @JHTaxa
Any idea when?
Query()
No branches or pull requests
Offer a way to query table records with better performance using the
IQueryable<T>
interface, somewhat paving the way for an EF Core implementation.IQueryable<T>
instead ofIEnumerable<T>
forSelect
method, orIOrderedQueryable<T>
that offers sorting features, if possibleSome guides on how to implement
IQueryable<T>
/IOrderedQueryable<T>
:https://putridparrot.com/blog/creating-a-custom-linq-provider/
The text was updated successfully, but these errors were encountered: