我有基于 .NET 4.0 的项目,但我需要在我的解决方案中使用 EntityFramework 5。所以我从 NuGet 安装它。
之后,我将目标框架更改为 .NET 4.5(我使用的是 VS 2012)并重建项目。
但在参考文件夹中,我看到该项目使用 EntityFramework.dll 版本 4.4.0.0。
我可以使用更新版本的 EntityFramework 吗?
在 web.config 中
<compilation debug="true" targetFramework="4.5">
<assemblies>
<add assembly="System.Data.Entity, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
</assemblies>
</compilation>