I am using this package to integrate Autofac with my WebApi Owin application:
https://www.nuget.org/packages/Autofac.WebApi2.Owin
And following this post:
<
Ok,
I figured it out. The Autofac Owin integration actually creates an Owin liftimescope, which is available through the whole Owin pipeline, thus available to middleware and extends this lifetimescope to the HttpRequestMessage. This is the lifetimescope marked with the AutofacWebRequest tag.
So all the previous WebApi integration code still needs to be performed on application startup. I have included:
var dependencyResolver = new AutofacWebApiDependencyResolver(container);
config.DependencyResolver = dependencyResolver;
but missed:
var builder = new ContainerBuilder();
builder.RegisterApiControllers(Assembly.GetExecutingAssembly()).InstancePerRequest();
in the EngineContext.Initialize method, which does all the registrations via the builder.
Here you can find more information on how to integrate Autofac with the WebApi, which obviously needs to be done also in the case of Owin:
https://code.google.com/p/autofac/wiki/WebApiIntegration
I hope this is useful!