MKS.CQRS.EntityFrameworkCore
10.0.4
dotnet add package MKS.CQRS.EntityFrameworkCore --version 10.0.4
NuGet\Install-Package MKS.CQRS.EntityFrameworkCore -Version 10.0.4
<PackageReference Include="MKS.CQRS.EntityFrameworkCore" Version="10.0.4" />
<PackageVersion Include="MKS.CQRS.EntityFrameworkCore" Version="10.0.4" />
<PackageReference Include="MKS.CQRS.EntityFrameworkCore" />
paket add MKS.CQRS.EntityFrameworkCore --version 10.0.4
#r "nuget: MKS.CQRS.EntityFrameworkCore, 10.0.4"
#:package MKS.CQRS.EntityFrameworkCore@10.0.4
#addin nuget:?package=MKS.CQRS.EntityFrameworkCore&version=10.0.4
#tool nuget:?package=MKS.CQRS.EntityFrameworkCore&version=10.0.4
Entity Framework Core implementation of CQRS patterns using MediatR and Repository pattern with configurable Microsoft.Extensions.Logging support.
| 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
- MediatR (>= 13.1.0)
- Microsoft.EntityFrameworkCore (>= 10.0.0)
- Microsoft.Extensions.Logging.Abstractions (>= 10.0.0)
- MKS.Repository.EntityFrameworkCore (>= 10.0.4)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 10.0.4 | 135 | 3/25/2026 |
| 10.0.3 | 290 | 3/18/2026 |
| 10.0.2 | 153 | 3/9/2026 |
| 10.0.1 | 125 | 3/4/2026 |
| 10.0.0 | 351 | 11/13/2025 |
| 9.3.1 | 422 | 11/6/2025 |
| 9.3.0 | 206 | 11/5/2025 |
| 9.2.2 | 419 | 9/10/2025 |
| 9.2.1 | 194 | 8/15/2025 |
| 9.2.0 | 163 | 8/15/2025 |
| 9.1.0 | 198 | 8/14/2025 |
| 9.0.6 | 243 | 8/8/2025 |
| 3.1.6 | 132 | 1/19/2026 |
| 3.1.5 | 289 | 12/17/2025 |
| 3.1.4 | 293 | 12/17/2025 |
| 3.1.3 | 289 | 12/16/2025 |
| 3.1.2 | 293 | 12/16/2025 |
| 3.1.1 | 292 | 12/16/2025 |
| 3.1.0 | 236 | 12/14/2025 |
| 3.0.0 | 205 | 12/5/2025 |
Version 9.3.1: Added AutoCommit parameter to BeginTransactionQuery for explicit transaction control.
New: AutoCommit parameter (default true) - when false, requires explicit CommitAsync/RollbackAsync in user code.
Provides flexibility for advanced scenarios requiring conditional commit/rollback logic.
Example with manual control: new BeginTransactionQuery<User>(AutoCommit: false)
Version 9.3.0: Added comprehensive transaction support for CQRS operations.
New: BeginTransactionQuery<TEntity> to initiate database transactions via MediatR.
All command records now accept optional ITransactionScope parameter for multi-command transactions.
Configurable AutoSaveChanges strategy: immediate (default) for early error detection or deferred for performance.
Commands seamlessly integrate with transactions - simply pass transaction scope from BeginTransactionQuery.
Example: using(var tx = await mediator.Send(new BeginTransactionQuery<User>())) { /* commands */ }
Enhanced atomicity for complex business operations spanning multiple entities.