sample-dotnet-core-cqrs-api icon indicating copy to clipboard operation
sample-dotnet-core-cqrs-api copied to clipboard

Sample .NET Core REST API CQRS implementation with raw SQL and DDD using Clean Architecture.

Results 16 sample-dotnet-core-cqrs-api issues
Sort by recently updated
recently updated
newest added

Bumps [Newtonsoft.Json](https://github.com/JamesNK/Newtonsoft.Json) from 12.0.3 to 13.0.1. Release notes Sourced from Newtonsoft.Json's releases. 13.0.1 New feature - Add JsonSelectSettings with configuration for a regex timeout Change - Remove portable assemblies from...

dependencies

Bumps [Newtonsoft.Json](https://github.com/JamesNK/Newtonsoft.Json) from 12.0.3 to 13.0.1. Release notes Sourced from Newtonsoft.Json's releases. 13.0.1 New feature - Add JsonSelectSettings with configuration for a regex timeout Change - Remove portable assemblies from...

dependencies

Hi, I've implemented CQRS by following your repo. However I noticed that the decorator registration is now working with Autofac 6.x builder.RegisterGenericDecorator( typeof(UnitOfWorkCommandHandlerWithResultDecorator), typeof(ICommandHandler)); I found different links on github...

hello @kgrzybek , We have learned in the past that searching based on Guid primary key is less performant as compared to Sequential Integer/Long primary key. Is there any work...

Code cleanup, refactoring and minor improvements for all projects.

Hi, I've recently encountered a problem causing throwing an InvalidOperationException showed below. ``` System.InvalidOperationException: Failed to compare two elements in the array. ---> System.ArgumentException: At least one object must implement...

Thank you for an excellent framework. Attempting to run: add-migrations init, I get the following error message in PM: **Unable to create an object of type 'OrdersContext'. For the different...

Hey Kamil, First thanks for the great example! I'm learning a lot from it! While creating a new order I can't see where those are persisted on the database and...

Hi, I appreciate your work a lot 💯 👍 I have one question. Why in `DomainEventsDispatcher` do you decide firstly to publish `DomainEvents` to the specific `Handlers` and then only...

Why did you use a customer as aggregate root instead of the order? Whenever I see the examples about DDD, they select the order as an aggregate.