Dapps.CqrsCore 1.2.7

dotnet add package Dapps.CqrsCore --version 1.2.7
                    
NuGet\Install-Package Dapps.CqrsCore -Version 1.2.7
                    
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="Dapps.CqrsCore" Version="1.2.7" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Dapps.CqrsCore" Version="1.2.7" />
                    
Directory.Packages.props
<PackageReference Include="Dapps.CqrsCore" />
                    
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 Dapps.CqrsCore --version 1.2.7
                    
#r "nuget: Dapps.CqrsCore, 1.2.7"
                    
#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 Dapps.CqrsCore@1.2.7
                    
#: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=Dapps.CqrsCore&version=1.2.7
                    
Install as a Cake Addin
#tool nuget:?package=Dapps.CqrsCore&version=1.2.7
                    
Install as a Cake Tool

Core library for CQRS + ES pattern in .net 5.
Provide base class, interface & default implementations for:
- Command, Command Stores, Command Queue
- Event, Event Stores, Event Repository, Event Queue
- Snapshot, Snapshot Store, Snapshot Repository

Product Compatible and additional computed target framework versions.
.NET net9.0 is compatible.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (2)

Showing the top 2 NuGet packages that depend on Dapps.CqrsCore:

Package Downloads
Dapps.CqrsCore.Persistence

Core library for persistence in cqrs + es pattern in .net 5 Provide base class, interface & default persistence stores

Dapps.CqrsCore.AspNetCore

.Net Core & .Net 5 library for Dapps.CqrsCore & Dapps.CqrsCore.Persistence Add CQRS builder for CQRS Service which be using by application.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.2.7 110 8/9/2025
1.2.6 75 7/27/2025
1.2.1 49 7/19/2025
1.2.0 122 7/17/2025
1.1.0 640 7/18/2021
1.0.0 656 7/11/2021 1.0.0 is deprecated because it is no longer maintained.

- Remove base case CommandHandlers,
- Inclucde ICqrsEventDispatcher into ICqrsEventRepository to dispatch events after aggregate is saved.
- Add rollback function for CommandDbContext & SnapshotDBContext
- Bug fixing
- Rename some interfaces & classes