The MediatR library was built to facilitate two primary software architecture patterns: CQRS and the Mediator pattern. CQRS stands for “Command Query Responsibility Segregation”. As the acronym suggests, it’s all about splitting the responsibility of commands (saves) and queries (reads) into different models. Abstract class: GetPagingHandlerQuery<TSource, TRequest, TContext, TKey>, CreateHandlerQuery<TSource, TRequest, TContext, TKey>, DeleteHandlerQuery<TSource, TRequest, TContext, TKey, CreateHandlerCommand<TSource, TRequest, TContext, TKey>, EditHandlerCommand<TSource, TRequest, TContext>, GetByIdHandler<TSource, TRequest, TContext, TKey>...
$ dotnet add package HT.MediatRNo README available.