CQRS.Mediatr.Lite 1.2.0

dotnet add package CQRS.Mediatr.Lite --version 1.2.0
NuGet\Install-Package CQRS.Mediatr.Lite -Version 1.2.0
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="CQRS.Mediatr.Lite" Version="1.2.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add CQRS.Mediatr.Lite --version 1.2.0
#r "nuget: CQRS.Mediatr.Lite, 1.2.0"
#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.
// Install CQRS.Mediatr.Lite as a Cake Addin
#addin nuget:?package=CQRS.Mediatr.Lite&version=1.2.0

// Install CQRS.Mediatr.Lite as a Cake Tool
#tool nuget:?package=CQRS.Mediatr.Lite&version=1.2.0

CQRS.Mediatr.Lite

GitHub Workflow Status Coverage Status Nuget Nuget

CQRS.Mediatr.Lite is a light-weight library to implement CQRS pattern in .NET solutions. The motivation for this library comes from the popular Mediatr library.

The library enables you to create Commands, Queries, Events and their respective handlers in a decouples fashion. The library also provides some starter code for Aggregate Root, for implementing Domain-Driven designs leveraging the CQRS pattern.

Setup

Install the NuGet package: Install-Package CQRS.Mediatr.Lite.

CQRS Basics

CQRS stands for Command Query Responsibility Segregation. It's a pattern which segregates the read and write pipeline. In complicated scenarios creating separate models and pipelines for reading and writing data help in tackling the complexity. All operations in the system can be divided into 2 caegories

  • Queries - Used only to read data from the database, and should not make any change to the state.
  • Commands - Change the state of the system by creating new data, update existing data or delete data from the system. References to CQRS
  1. CQRS - Martin Fowler
  2. Apply simplified CQRS and DDD patterns in a microservice

Complex applications which can benifit from Domain-Driven-Design also draws advantage from CQRS.

Samples

https://github.com/microsoft/CQRS.Mediatr.Lite/tree/main/samples/CQRS.Mediatr.Lite.Samples

Contributing

This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.opensource.microsoft.com.

When you submit a pull request, a CLA bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., status check, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repos using our CLA.

This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.

Trademarks

This project may contain trademarks or logos for projects, products, or services. Authorized use of Microsoft trademarks or logos is subject to and must follow Microsoft's Trademark & Brand Guidelines. Use of Microsoft trademarks or logos in modified versions of this project must not cause confusion or imply Microsoft sponsorship. Any use of third-party trademarks or logos are subject to those third-party's policies.

Product 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. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos 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
1.2.0 1,670 10/15/2021
1.1.0 330 10/12/2021
1.0.0 490 4/10/2021

Added started code for enumeration class