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
The docs provide an example for explicit client-side evaluation as
var blogs = context.Blogs .AsEnumerable() .Where(blog => StandardizeUrl(blog.Url).Contains("dotnet")) .ToList();
Is there an async equivalent for .AsEnumerable() (is it .AsAsyncEnumerable())? If so, could it be added to the documentation?
.AsEnumerable()
.AsAsyncEnumerable()
The text was updated successfully, but these errors were encountered:
That's detailed in this page.
I'm planning to work on the client vs. server evaluation page which you mention above, I'll include an async sample there as well.
Sorry, something went wrong.
roji
No branches or pull requests
The docs provide an example for explicit client-side evaluation as
Is there an async equivalent for
.AsEnumerable()
(is it.AsAsyncEnumerable()
)? If so, could it be added to the documentation?The text was updated successfully, but these errors were encountered: