我一直在努力让ASP Web API / Autofac集成工作。我创建了一个简单的项目,其中一个Controller返回一个字符串,并且能够成功运行该应用程序。但是,当我将Autofac集成到解决方案中时,在运行时我会收到System.EntryPointNotFoundException: Entry point was not found.
当我在我的机器上创建它时,以下是项目中包含的库版本(减去Autofac库)。我从Nuget获得Autofac库,所有其他库都在本地安装。
我将Autofac代码放在我的Register方法中,如下所示:
public static class WebApiConfig
{
public static void Register(HttpConfiguration config)
{
//Other code left out for brevity
var builder = new ContainerBuilder();
builder.RegisterApiControllers(Assembly.GetExecutingAssembly());
// Set the dependency resolver to be Autofac.
var container = builder.Build();
config.DependencyResolver = new AutofacWebApiDependencyResolver(container);
}
}
我在Application_Start方法中收到EntryPointNotFoundException
:
public class WebApiApplication : System.Web.HttpApplication
{
protected void Application_Start()
{
GlobalConfiguration.Configure(WebApiConfig.Register);
}
}
然后我通过Nuget升级所有包并获得这些版本:
此部分现已插入到web.config文件中:
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="Autofac" publicKeyToken="17863af14b0044da" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-3.5.0.0" newVersion="3.5.0.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
当我再次运行该应用程序时,我仍然会收到System.EntryPointNotFoundException: Entry point was not found.
我在这里想要让Autofac和Web API很好地一起玩吗?
谢谢,凯尔
答案 0 :(得分:9)
我想出了这个问题。您需要确保Autofac的版本与Web API的版本兼容。就我而言,我使用的是Web API 2.2库,但标有 Autofac ASP.NET Web API集成的Autofac版本。一旦我切换到 Autofac ASP.NET Web API 2.2集成,我的解决方案就有效了。毫无疑问,这是一个微妙的差异,并且很容易假设您正在使用正确的版本。
凯尔