Hi,
I am evaluating the framework for one of the application that I am working on. I want to use the CQRS but I don’t want to use the event sourcing for data storage.
I know that one approach is to mark the aggregate as an entity.
Is there an alternative there. Can I just plug-in my custom repository which would create the aggregate from my own entity classes and stop axon from persisting the events. I want to use an event handler which would update the data in the database based on the event.
Thanks.