System.Linq.AsyncEnumerable 10.0.0-preview.4.25258.110
About
The System.Linq.AsyncEnumerable
library provides support for Language-Integrated Query (LINQ) over IAsyncEnumerable<T>
sequences.
Key Features
- Extension methods for performing operations on
IAsyncEnumerable<T>
sequences.
How to Use
using System;
using System.IO;
using System.Linq;
static IAsyncEnumerable<City> DeserializeAndFilterData(Stream stream)
{
IAsyncEnumerable<City> cities = JsonSerializer.DeserializeAsyncEnumerable<City>(stream);
return from city in cities
where city.Population > 10_000
orderby city.Name
select city;
}
Main Types
The main type provided by this library is:
System.Linq.AsyncEnumerable
Additional Documentation
Feedback & Contributing
System.Linq.AsyncEnumerable
is released as open source under the MIT license. Bug reports and contributions are welcome at the GitHub repository.
Showing the top 20 packages that depend on System.Linq.AsyncEnumerable.
Packages | Downloads |
---|---|
System.Linq.Async
Provides support for Language-Integrated Query (LINQ) over IAsyncEnumerable<T> sequences.
|
6 |
System.Interactive.Async
Interactive Extensions Async Library used to express queries over asynchronous enumerable sequences.
|
4 |
.NET Framework 4.6.2
- Microsoft.Bcl.AsyncInterfaces (>= 10.0.0-preview.4.25258.110)
- Microsoft.Bcl.Memory (>= 10.0.0-preview.4.25258.110)
- System.Threading.Tasks.Extensions (>= 4.6.3)
- System.ValueTuple (>= 4.6.1)
.NET 8.0
- No dependencies.
.NET 9.0
- No dependencies.
.NET 10.0
- No dependencies.
.NET Standard 2.0
- Microsoft.Bcl.AsyncInterfaces (>= 10.0.0-preview.4.25258.110)
- Microsoft.Bcl.Memory (>= 10.0.0-preview.4.25258.110)
- System.Threading.Tasks.Extensions (>= 4.6.3)
Version | Downloads | Last updated |
---|---|---|
10.0.0-rc.2.25502.107 | 3 | 10/16/2025 |
10.0.0-rc.1.25451.107 | 3 | 10/9/2025 |
10.0.0-preview.7.25380.108 | 3 | 10/9/2025 |
10.0.0-preview.6.25358.103 | 2 | 10/9/2025 |
10.0.0-preview.5.25277.114 | 2 | 10/9/2025 |
10.0.0-preview.4.25258.110 | 2 | 10/9/2025 |
10.0.0-preview.3.25171.5 | 3 | 10/9/2025 |
10.0.0-preview.2.25163.2 | 2 | 10/9/2025 |
10.0.0-preview.1.25080.5 | 2 | 10/9/2025 |