无法加载文件或程序集 'EntityFramework, Version=4.3.1.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' 或其依赖项之一。找到的程序集的清单定义与程序集引用不匹配。(来自 HRESULT 的异常:0x80131040)
当我将此代码添加到我的项目中时,我只会收到此错误:
private IUserRepository repository;
public SearchController(IUserRepository repo)
{
repository = repo;
}
我想这是有道理的,因为我为此使用了 EntityFramework。我现在才确定如何修复这个错误。
我看过这个链接: http: //msdn.microsoft.com/en-us/library/e74a18c4.aspx 虽然我不知道如何使用这个程序?(它总是空白)。
我认为这个错误可能与我的数据库是由 dotnet-host.com 托管的事实有关,并且当它与在线数据库交互时,有一些本地引用会中断。