Hello,
i’m using the GetEventStoreRepository of the getting started git repository.
Now i want to subscribe with my read side to all streams from all my aggregates (and/or projections).
The C# API has only SubscribeToStream(, …) and SubscribeToAll(…).
I don’t know the name of the streams because they are named “aggregate-” and it could be a very large list of streams.
The SubscribeToAll(…) also does not work, because it will also subscribe to streams where only the admin user has access to.
I was using this blog post as a starting point:
http://geteventstore.com/blog/20130607/catch-up-subscriptions-with-the-event-store/
So, how do i subscribe to all events from my GetEventStoreRepository?
Thanks.