Revo
Revo copied to clipboard
Event Sourcing, CQRS and DDD framework for C#/.NET Core.
As originally reported here: https://github.com/revoframework/Revo/issues/27#issuecomment-827460760 Sagas probably dispatch async events event when there are no sagas for the events being published (needs more investigation).
We need more complete example apps that would show more of the framework features and how to use them in real-world scenarios.
We need to be able to save and load state of event-sourced aggregates into a serialized state (e.g. JSON) for faster aggregate loading. This should mostly work as an optimization...
Aggregate [repository ](https://github.com/revoframework/Revo/blob/develop/Revo.Infrastructure/Repositories/IRepository.cs)must have only 2 methods(GetByID, Save) by DDD.
I don't quite understand how Authorization works. What are permission , contextId, resourceId. The documentation contains very short examples. Maybe you have some examples of how to use Authorization/Permission/Context/Resource ?
Have utils/apiClients for integration testing ? Like as [EventFlow.IntegrationTesting](https://github.com/eventflow/EventFlow/tree/develop-v0/Source/EventFlow.Tests/IntegrationTests)
Hey, Does Revo supports Azure functions? Best regards, TheAifam5
Implement a way to easily re-run event projections, e.g. when migrating the DB schema.
We're interested in using this framework for a cross-platform application we're developing using Blazor. The main issue we're running into is trying to understand how to setup the dependency injection....