I am new to axon and have a question… current version is producing 3 different events and we are consolidating them to one.
UserAdded ==>UserFirstName,LastName
UserAddressChanged==>UserAddress
To
UserInformationChanged ==>UserFirstName,LastName,Address
so there would be case where i would have to refer to userAdded event to upcast UserAddressChanged.
I am going with assumption that event upcasting is the best approach.
I can see that axon 3.x has ContextAwareEventMultiUpcaster which should serve my purpose, but i don’t see something similar in 2.0
Is there a way, i can achieve my goal without upgrading?
Are there any sample or reference example with tests for various options in upcasting? I have seen very primitive examples so far.
any guidance would be highly appreciated.