Using CQRS pattern with MediatR in .Net Core
Context and problem In traditional architectures, the same data model is used to query and update a database. That’s simple and works well for basic CRUD operations. In more complex applications, however, this approach can become unwieldy. For example, on…