MediatR Extensions for Microsoft Dependency Injection Released
To help those building applications using the new Microsoft DI libraries (used in Orleans, ASP.NET Core, etc.), I pushed out a helper package to register all of your MediatR handlers into the container.
MediatR.Extensions.Microsoft.DependencyInjection
To use, just add the AddMediatR method to wherever you have your service configuration at startup:
You can either pass in the assemblies where your handlers are, or you can pass in Type objects from assemblies where those handlers reside. The extension will add the IMediator interface to your services, all handlers, and the correct delegate factories to load up handlers. Then in your controller, you can just use an IMediator dependency:
And you’re good to go. Enjoy!