AkkaCQRS icon indicating copy to clipboard operation
AkkaCQRS copied to clipboard

Event sourcing example build on Akka.NET with persistence plugin

Results 8 AkkaCQRS issues
Sort by recently updated
recently updated
newest added

Hi, I don't see the projection (building the read model) part of CQRS in the example. Do I missed some lines or is this not included? I think this should...

Could it be that, there is a missing line before this code? https://github.com/Horusiath/AkkaCQRS/blob/b6d87aa88a21103a5b51e0416503654f86a17a31/src/AkkaCQRS.Core/Users/UserIndex.cs#L57 ``` Context.System.EventStream.Subscribe(Self, typeof (UserEvents.UserRegistered)); ```

While I'm running the application locally, I don't see any response after this line _child.Forward(command);_ The _sign up_ page returns with a 500 Internal Server Error and simply don't proceed...

I think the method **PatchWithdrawal** should return an object which should contain the account and balance. Or another GET method to return an account which shows the balance. Code snippet:...

In the extension.cs, a **router** has been used for userindex actor. Is there a reason why the other coordinators like **account and user** have not been used in a router...

In the line 74 of AggregateCoordinator, there is a check for the **terminated** message. I can presume why there is a check, because the actor has to be removed from...

Is the role of AggregateCoordinator a supervisor?

First of all, I want to say that this is an awesome example that I have seen in the area of CQRS with AKKA.NET. In lines 64 to 67 in...