devCrowd-Team / fluent-cqrs

My Next Generation CQRS Framework for .Net Applications
MIT License
17 stars 7 forks source link

Replay features: All events of aggregate type / filter for certain events #6

Closed SCullman closed 9 years ago

SCullman commented 9 years ago

You can now replay any event für a certain aggregate type. You can also filter the events to replay for certain events.

SCullman commented 9 years ago

I would also suggest to rename some replay functions:

 aggregates
   .ReplayFor<TestAggregate>()
   .AllEvents()
   .ToAllEventHandlers();

and

aggregates
   .ReplayFor<TestAggregate>()
   .EventsWithAggregateId(aggId)
   .ToAllEventHandlers();
jfellien commented 9 years ago

nice :)

THX