↧
Answer by Szymon Pobiega for Should an event-sourced aggregate root have...
First of all, do you really really need event sourcing in you case? It looks pretty simple to me. Event sourcing has both advantages and disadvantages. While it gives you a free audit trail and makes...
View ArticleShould an event-sourced aggregate root have access to the event sourcing...
I'm working on an event-sourced CQRS implementation, using DDD in the application / domain layer. I have an object model that looks like this:public class Person : AggregateRootBase{ private Guid?...
View Article