ModularFramework.Utilities.Linq.Async.Abstractions
1.0.0
Prefix Reserved
dotnet add package ModularFramework.Utilities.Linq.Async.Abstractions --version 1.0.0
NuGet\Install-Package ModularFramework.Utilities.Linq.Async.Abstractions -Version 1.0.0
<PackageReference Include="ModularFramework.Utilities.Linq.Async.Abstractions" Version="1.0.0" />
<PackageVersion Include="ModularFramework.Utilities.Linq.Async.Abstractions" Version="1.0.0" />
<PackageReference Include="ModularFramework.Utilities.Linq.Async.Abstractions" />
paket add ModularFramework.Utilities.Linq.Async.Abstractions --version 1.0.0
#r "nuget: ModularFramework.Utilities.Linq.Async.Abstractions, 1.0.0"
#:package ModularFramework.Utilities.Linq.Async.Abstractions@1.0.0
#addin nuget:?package=ModularFramework.Utilities.Linq.Async.Abstractions&version=1.0.0
#tool nuget:?package=ModularFramework.Utilities.Linq.Async.Abstractions&version=1.0.0
ModularFramework.Utilities.Linq.Async.Abstractions is the abstraction package that introduces async LINQ operations over IAsyncQueryable.
This package is designed to serve as a foundation for asynchronous query operations. It does not implement IAsyncQueryProvider by itself,
see ModularFramework.Extensions.EntityFrameworkCore.Linq.Async package for the EF Core implementation.
Usage
Call the AsAsyncQueryable method to convert IQueryable<T> to IAsyncQueryable<T> then compose queries asynchronously as LINQ’s fluent syntax.
public async Task Usage<T>(IQueryable<T> queryable)
{
IAsyncQueryable<T> asyncQueryable = queryable.AsAsyncQueryable();
IAsyncQueryable<T> asyncQueryableWithSelect = asyncQueryable.Select(x=>x);
IAsyncQueryable<T> asyncQueryableWithWhere = asyncQueryable.Where(x=>true);
List<T> list = await asyncQueryable.ToListAsync(CancellationToken.None);
}
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net10.0 is compatible. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
-
net10.0
- No dependencies.
NuGet packages (1)
Showing the top 1 NuGet packages that depend on ModularFramework.Utilities.Linq.Async.Abstractions:
| Package | Downloads |
|---|---|
|
ModularFramework.Extensions.EntityFrameworkCore.Linq.Async
Extension package for EF Core that provides the implementations for ModularFramework.Utilities.Linq.Async.Abstractions to use async LINQ operations over IAsyncQueryable. |
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 1.0.0 | 270 | 12/15/2025 |