EduardoPires / EquinoxProject

Full ASP.NET Core 6 application with DDD, CQRS and Event Sourcing concepts

Home Page:http://equinoxproject.azurewebsites.net/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Would like to have tutorials or detail explanation on the Event Sourcing.

chhinsras opened this issue · comments

This is really good cqrs and event sourcing sample, I ever since.

But this is quite confusing as i never implement event sourcing before, i did cqrs.

So, would you mind giving tutorials video or written showing how to write them based on this project

tahnk you

Hello! I'm not the best person to explain, but basically every Command (data change) is sent to the Mediatr and it does the work delegating a task to handler. The handler trigger a event and at the end of the process, the event object is serialized and saved within the database.