Skip to content

Instantly share code, notes, and snippets.

@GuillaumeLebeau
Forked from pradeepn/CQRSWithMediatR.txt
Created June 13, 2018 14:43
Show Gist options
  • Save GuillaumeLebeau/027abf21318aa5228682fa9a57dc850b to your computer and use it in GitHub Desktop.
Save GuillaumeLebeau/027abf21318aa5228682fa9a57dc850b to your computer and use it in GitHub Desktop.
CQRS with MediatR

MediatR Simple mediator implementation in .NET for In-process messaging.

Supports request/response, commands, queries, notifications and events, synchronous and async with intelligent dispatching via C# generic variance.

https://github.com/jbogard/MediatR/wiki

Workflow Workflow is kind of container for business logic. It could combine set of queries and commands into single operation which matters to end user.

https://github.com/sergeyzwezdin/cqrs-spirit

Thin Controllers with CQRS and MediatR

http://codeopinion.com/thin-controllers-cqrs-mediatr/

Query Objects with a Mediator

http://codeopinion.com/query-objects-with-a-mediator/

Validating Commands with the Decorator Pattern

http://codeopinion.com/validating-commands/

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment