1

我正在尝试使用 Breeze 和 AngularJS 从 Jhon Papa 创建 HotTowel 示例应用程序。我已经安装了所有必需的包,并且在安装Breeze.WebApi包之前一切正常,但是在我安装了这个包之后,我在 WebApiRoute 配置方法上得到了以下异常。

<ExceptionMessage>
Could not load file or assembly 'System.Web.Http, Version=4.0.0.0, Culture=neutral, 
PublicKeyToken=31bf3856ad364e35' or one of its dependencies. The located assembly's 
manifest definition does not match the assembly reference. (Exception from HRESULT: 
0x80131040)

我已将System.Web.Http dll 引用到项目中,但使用的是最新的 5.0.0 版本。

4

2 回答 2

1

您可以尝试进行绑定重定向以指向新程序集并查看它是否有效。

<runtime>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Web.Http" publicKeyToken="31bf3856ad364e35" />
        <bindingRedirect oldVersion="1.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
  </assemblyBinding>
</runtime>
于 2013-10-25T07:14:27.950 回答
0

这可能是尝试在 VS 2013 中使用新的 Microsoft WebApi2 nuget 包的结果。以前 Breeze 不支持这些。

截至目前,Breeze 1.4.5 已支持 Microsoft 的 ASP.NET WebApi 2 和 Entity Framework 6。请参阅http://www.breezejs.com/documentation/download

于 2013-10-28T23:19:06.503 回答