Hello,
We notice that in an aggregate, whenever, a new command is issued, event sourcing handler is being invoked for all the past events?
Let’s say we have submitted 6 command to an aggregate and it resulted in 6 events in event store, and then, when we submit 7th command, each time event sourcing handler is being invoked for 6 times and then only the 7th command is being processed, followed by event sourcing handler.
Is it a true observation?