dotnet / dotnet/EntityFramework.Docs
Async explicit client-side evaluation
Open
area-query
- Dominant language
- Mermaid
- Stars
- 1.7k
- Forks
- 2k
- Avg merge
- 7d 23h
- Merged PRs (30d)
- 16
Description
The [docs](https://learn.microsoft.com/en-us/ef/core/querying/client-eval) provide an example for explicit client-side evaluation as
```c#
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?
Contributor guide
Assessment
This issue has not been assessed yet.