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
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="MKS.CQRS.EntityFrameworkCore" Version="10.0.4" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="MKS.CQRS.EntityFrameworkCore" Version="10.0.4" />
                    
Directory.Packages.props
<PackageReference Include="MKS.CQRS.EntityFrameworkCore" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add MKS.CQRS.EntityFrameworkCore --version 10.0.4
                    
#r "nuget: MKS.CQRS.EntityFrameworkCore, 10.0.4"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package MKS.CQRS.EntityFrameworkCore@10.0.4
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=MKS.CQRS.EntityFrameworkCore&version=10.0.4
                    
Install as a Cake Addin
#tool nuget:?package=MKS.CQRS.EntityFrameworkCore&version=10.0.4
                    
Install as a Cake Tool

Entity Framework Core implementation of CQRS patterns using MediatR and Repository pattern with configurable Microsoft.Extensions.Logging support.

Product 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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.