Starting with NServiceBus version 8, the dependency injection container adapter packages are no longer required. NServiceBus directly supports the
Microsoft.Extensions.DependencyInjection.Abstractions
model and third party containers can be integrated using the externally managed container mode. Visit the dependency injection upgrade guide for further information.NServiceBus can be configured to use Autofac for dependency injection via the NServiceBus.
or the NServiceBus.
package.
endpointConfiguration.UseContainer(new AutofacServiceProviderFactory(containerBuilder =>
{
containerBuilder.RegisterInstance(new MyService());
}));
DependencyLifecycle mapping
DependencyLifecycle
maps to Autofac instance scopes as follows:
DependencyLifecycle | Autofac instance scope |
---|---|
InstancePerCall | Instance Per Dependency |
InstancePerUnitOfWork | Instance Per Lifetime Scope |
SingleInstance | Single Instance |
Property Injection
This dependency injection container adapter automatically enables property injection for known types. Use the Func
overload of .
to get full control over the injected properties if needed.