dotnet / dotnet/EntityFramework.Docs

Async explicit client-side evaluation

Open
#4,832 1 comment 0 reactions 1 assignee Assigned to @AndriySvyryd View on GitHub
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

Open the contributing guide

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.