AspNetCore.Identity with EventSourcing
Hi. Im trying to make identity based on events.
For that im using
Now im looking on how to impliment em.
For now im trying to override
Also it seems that event if i can somehow achive it and extract events from
EFCore and other things can do it automatically.
Should i keep overriding at
Any ideas or examples of event sourcing with identity?
For that im using
Marten. Now im looking on how to impliment em.
For now im trying to override
store layer of identity. Also it seems that event if i can somehow achive it and extract events from
TUser (when user updated) i can't use events for updating. Because there is passed reference to Update method and then i need somehow to pipe that events from model (or parse em and try to figure out what happens?) and then using reflection reasign all properties.EFCore and other things can do it automatically.
Should i keep overriding at
store layer or go higher to manager layer? Any ideas or examples of event sourcing with identity?