0
我有一個問題Autofac。該文件明確指出,使用Web API 2和OWIN你的時候切不可使用GlobalConfiguration.Configuration
任何地方:Autofac with Owin
在OWIN集成一個常見的錯誤是使用GlobalConfiguration.Configuration的。在OWIN中,您可以從頭開始創建配置。在使用OWIN集成時,不應在任何地方引用GlobalConfiguration.Configuration。
可以在這裏找到(在頁面的底部):http://autofac.readthedocs.io/en/latest/integration/webapi.html
但無論我做什麼,我不能得到Autofac使用工作:
config.DependencyResolver = new AutofacWebApiDependencyResolver(container);
而不是:
GlobalConfiguration.Configuration.DependencyResolver = new AutofacWebApiDependencyResolver(container);
當我使用後者,它的工作原理。 有誰知道爲什麼?