CQRS Examples and Screencasts

24,419

Solution 1

There's a implementation here MarkNijhof.

But after reading the documents from the CQRS Info site my favourite resource is Think Before Coding look at the post Tags. (http://thinkbeforecoding.com/)

Some other useful resources...

Solution 2

Microsoft patterns & practices is working on a guidance project called CQRS Journey. The idea is to develop a non-trivial system with multiple bounded contexts and apply CQRS, ES and other patterns & techniques where appropriate and document all lessons learnt along the way. The project is still in flight. Check out the journey progress at http://cqrsjourney.github.com

The project involves many community members and accepts contribitions!

Solution 3

http://ncqrs.org/

Is a useful resource...

Solution 4

Here is a complete example I wrote for my CQRS lib Scritchy:

Creating your CQRS app using the Scritchy nuget package is pretty straightforward and gets you up and running in a few minutes

Solution 5

Here's some more informational resources, but unfortunately no end-to-end code samples beyond SimpleCQRS and MarkNijhof.

I have come across a couple other code samples, though I have not yet had time to review them whatsoever:

Share:
24,419
Tom Dudfield
Author by

Tom Dudfield

Updated on August 26, 2020

Comments

  • Tom Dudfield
    Tom Dudfield over 3 years

    I'm looking for some in depth end-to-end CQRS examples with a reasonable set of unit tests.

    Also, if anyone knows of some CQRS screencasts as well it would be extremely handy.

    I'm already aware of these examples