JOliver EventStore - How to access all saved events?

How can I access all saved events in EventStore to restore my models?

The method called GetFromis mentioned in question J Oliver EventStore V2.0 questions , but I can not find this method on the "IStoreEvents" interface, which is returned from Wireup.

+3
source share
1 answer

This method is part of an interface IPersistStreams, not an interface IStoreEvents. To do this, you need to clarify the API a little. I just added a method IStoreEventscalled GetFrom(DateTime started)that returns IEnumerable<Commit>:

https://github.com/joliver/EventStore/commit/1a039073df20fba11562c3c1a872180c225122c9

+5

All Articles