• This package is useful in scenarios where your MediatR contracts are in a separate assembly/project from handlers.
    • Issues:
      7
    • Last commit:
      30 October 2024
  • MediatR is a simple and efficient .NET library that implements the mediator pattern, allowing you to dispatch commands, queries, and events between different...
  • The MediatR library was built to facilitate two primary software architecture patterns: CQRS and the Mediator pattern.
  • Either commands, from Package Manager Console or .NET Core CLI, will download and install MediatR and all required dependencies.
    • Downloads:
      240.8M
    • Version:
      12.4.1 · 9 September 2024
    • Size:
      93.62 KB
    dotnet add package MediatR --version 12.4.1
  • MediatR provides an unambitious mediator implementation, focusing on simplicity and efficiency in facilitating object communication.
  • MediatR'nin komut işleyicisi sınıflarınızı bilmesi için, aracı sınıflarını ve komut işleyicisi sınıflarını IoC kapsayıcınıza kaydetmeniz gerekir.
  • MediatR is one of the most popular libraries that has a simple, in-process implementation of Mediator pattern with no dependencies.
  • In this article I'll be using a demo ASP.NET Core web application (available on GitHub) that was originally built without using MediatR.