I’m trying o use CQRS pattern with NServiceBus and Event Store. I have few questions
-
UI -> Command -> CommandHandler->ServiceBus->Business Process ( 1 to many steps to perform the requested command). Do I publish events for each changes to the service bus and then let the [ event store handler] handle these messages and write to the event store ? or directly write to the event store from business process as things get executed ?
-
One of your talks you have mentioned that , you like to store commands as well. Where do you store commands ? (event store or some other way)
-
How do I Plug-in the Event Store with NserviceBus seamlessly ?
4.Can I use MS SQL server to store event store events ?
Thank you
Baski