Skip to content

Sample ASP.NET Core API that uses MediatR in a CQRS approach to handle requests and responses.

License

Notifications You must be signed in to change notification settings

evgomes/cqrs-mediatr-asp-net-core

Repository files navigation

CQRS + MediatR ASP.NET Core API

Simple API built using ASP.NET Core and MediatR to demonstrate how to easily implement the CQRS pattern in .NET applications.

The example API is very simple, exposing HTTP endpoints through /api/users that internally use MediatR to handle requests and responses.

Frameworks and Libraries

How to Test

Run the following commands, in sequence, inside the application directory:

dotnet restore
dotnet run

Navigate to http://localhost:5000/swagger/index.html to check the API documentation and test all endpoints.

Limitations

The API does not show how to implement distinct databases to read and write data, nor shows advanced synchronization features. The application just shows examples of using MeadiatR and, consequently, the mediator pattern to handle request and responses in a CQRS approach.

About

Sample ASP.NET Core API that uses MediatR in a CQRS approach to handle requests and responses.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages