To evaluation purpose I'm trying to set-up an event-sourcing application, its a "Personal Finance Software", the first attempt is to create an Aggregate Root (Account) who you can add entities (Transaction/s).
Account will receive lots of Transaction during software lifecycle, so every time I need to add a Transaction have to rehydrate an Aggregate more and more big.
So my fear is either:
- event-sourcing is not good choice in this case
- entities should be mapped differently.