liquidprojections / LiquidProjections

Liquid Projections supports building and maintaining autonomous .NET projection code in an Event Sourcing architecture.
https://www.liquidprojections.net
MIT License
169 stars 25 forks source link

Looking for direction #118

Closed Lutando closed 5 years ago

Lutando commented 5 years ago

I was reading the landing page and it says

Promotes the idea of autonomous projectors that decide what data to project, where to persist that data, and when to rebuild.

I would like to know where do you define how projections are rebuilt, I have scanned through the code and I am not finding the obvious place of where this is, this is a very interesting lib, thanks for all the hard work

dennisdoomen commented 5 years ago

That's the whole point. You decide that yourself. The library only provides building blocks that you can use. There's no goneral-purpose base-class or something like that. But to take the example as a starting point, I would do it in the Start method

Lutando commented 5 years ago

fantastic, i get it now, thanks for the fast response 👍