EventFlow
EventFlow copied to clipboard
Async/await first CQRS+ES and DDD framework for .NET
Hi! Are you guys open for a contribution that adds support for Azure Event Hubs integration? Or is this something that is already being worked on? This could be a...
As stated in #562 we can get the aggregate state from the aggregate store, but i think this will be the latest state and not necessarily the correct state for...
I get this exception when trying to call PublishAsync() from the CommandBus. It seems to be a problem that occurs when using EFCore 6. I got this exception while using...
As part of the 1.0 release, the documentation is moved into the main repository to better align the code with the documentation. Going forward, pull requests that warrant a documentation...
PoC a fix for https://github.com/eventflow/EventFlow/issues/926 ``` IEventUpgrader.UpgradeAsync ```
## Issue I was having issues getting any command to fail when following the docs. After digging into the code and debugging I noticed that the `CommandHandler` abstract class will...
When emitting an `AggregateEvent` with a `Metadata.SourceId`, `AggregateRoot.Emit()` does not inject the emitted event's `Metadata.SourceId` into `PreviousSourceIds`, and so issuing the same command with the same `SourceId` on the same...
If we got unique constraint violation on inserting read model it probably another thread already inserted read model and we need to start update again.
In the documentation, you are missing the final link in the chain between readmodels and queries. The example uses a `IUserReadModelRepository` but there is no example of how that would...