EntityFrameworkCore.Parallel
1.0.0
See the version list below for details.
dotnet add package EntityFrameworkCore.Parallel --version 1.0.0
NuGet\Install-Package EntityFrameworkCore.Parallel -Version 1.0.0
<PackageReference Include="EntityFrameworkCore.Parallel" Version="1.0.0" />
<PackageVersion Include="EntityFrameworkCore.Parallel" Version="1.0.0" />
<PackageReference Include="EntityFrameworkCore.Parallel" />
paket add EntityFrameworkCore.Parallel --version 1.0.0
#r "nuget: EntityFrameworkCore.Parallel, 1.0.0"
#:package EntityFrameworkCore.Parallel@1.0.0
#addin nuget:?package=EntityFrameworkCore.Parallel&version=1.0.0
#tool nuget:?package=EntityFrameworkCore.Parallel&version=1.0.0
EntityFrameworkCore.Parallel
This extension to Entity Framework Core adds a Set<TEntity> method to IDbContextFactory<TContext>.
This allows you to easily execute multiple queries in parallel without the need to write complex code, or a lot of using blocks or statements.
You can stick to all your known methods from IQueryable<TEntity>.
As the context is disposed after your query is executed, all results will obviously not be tracked and disconnected from any DbContext.
How to use
In your Startup class, add a DbContextfactory. If you want a pooled one, or not is up to you.
services.AddPooledDbContextFactory<OrderContext>(options => options.UseSqlServer(@"Server=(localdb)\mssqllocaldb;Database=OrderTest"));
In your business class, inject an IDbContextFactory<TContext> and use it like this
var ordersFromDb = await _factory.Set<Order>().Where(o => o.Id > 3).ToListAsync();
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. 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. |
| .NET Core | netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
| .NET Standard | netstandard2.1 is compatible. |
| MonoAndroid | monoandroid was computed. |
| MonoMac | monomac was computed. |
| MonoTouch | monotouch was computed. |
| Tizen | tizen60 was computed. |
| Xamarin.iOS | xamarinios was computed. |
| Xamarin.Mac | xamarinmac was computed. |
| Xamarin.TVOS | xamarintvos was computed. |
| Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.1
- Microsoft.CSharp (>= 4.7.0)
- Microsoft.EntityFrameworkCore (>= 5.0.0)
- System.Interactive.Async (>= 5.0.0)
- System.Linq.Async (>= 5.0.0)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on EntityFrameworkCore.Parallel:
| Package | Downloads |
|---|---|
|
RESTworld.Business
Package Description |
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 6.0.2 | 191 | 2/10/2026 |
| 6.0.1 | 247 | 1/18/2026 |
| 6.0.0 | 606 | 11/11/2025 |
| 5.0.4 | 292 | 11/9/2025 |
| 5.0.3 | 535 | 9/16/2025 |
| 5.0.2 | 426 | 6/19/2025 |
| 5.0.1 | 658 | 1/28/2025 |
| 5.0.0 | 492 | 11/19/2024 |
| 4.1.1 | 6,298 | 10/11/2024 |
| 4.1.0 | 3,703 | 9/20/2024 |
| 4.0.5 | 1,116 | 7/10/2024 |
| 4.0.4 | 433 | 6/4/2024 |
| 4.0.3 | 256 | 5/24/2024 |
| 4.0.2 | 960 | 4/19/2024 |
| 4.0.1 | 2,124 | 1/9/2024 |
| 4.0.0 | 817 | 11/14/2023 |
| 3.0.9 | 574 | 10/23/2023 |
| 3.0.8 | 608 | 9/5/2023 |
| 3.0.7 | 620 | 7/17/2023 |
| 1.0.0 | 2,798 | 11/24/2020 |