How to integrate Autofac with WepApi 2 and Owin?

非 Y 不嫁゛ 提交于 2019-12-03 01:22:11

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!

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!