Popularity
2.7
Growing
Activity
0.0
Stable
99
12
8

Programming language: C#
License: MIT License
Latest version: v1.0.0

Xer.Cqrs alternatives and similar packages

Based on the "Event aggregator and messenger" category.
Alternatively, view Xer.Cqrs alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of Xer.Cqrs or a related project?

Add another 'Event aggregator and messenger' Package

README

What is Xer.Cqrs?

Xer.Cqrs is a convenience package that contains all packages needed to build a CQRS write side with DDD concepts. It groups together other lightweight XerProjects libraries:

  • Domain Driven - contains Domain Driven Design (DDD) components/concepts.
  • Command Stack - contains components for handling commands.
  • Event Stack - contains components for handling events.

Build

Branch Status
Master Build status
Dev Build status

Table of contents

Overview

Simple CQRS library

This project composes of components for implementing the CQRS pattern (Command Handling, Event Handling) with DDD concepts (Aggregate Roots, Entities, Value Objects, Domain Events). This library was built with simplicity, modularity and pluggability in mind.

Features

Installation

You can simply clone this repository, build the source, reference the dll from the project, and code away!

Xer.Cqrs is available as a Nuget package:

  • NuGet

To install Nuget package:

  1. Open command prompt
  2. Go to project directory
  3. Add the packages to the project: csharp dotnet add package Xer.Cqrs
  4. Restore the packages: csharp dotnet restore

Getting Started

(Samples are in ASP.NET Core)

Command Handling

See https://github.com/XerProjects/Xer.Cqrs.CommandStack/blob/dev/README.md for documentation.

Event Handling

See https://github.com/XerProjects/Xer.Cqrs.EventStack/blob/dev/README.md for documentation.