问题描述
请帮我解决这个错误,因为它已经花了太多的时间,从这个链接添加实体框架6.1.3:的为Visual Studio 2013(卸载并重新安装它后再次)
Kindly help me resolve this error as it already took too much time to add Entity Framework 6.1.3 from this link: Download EntityFramework 6.1.3 for Visual Studio 2013 (after uninstalling and re-installing it again and again)
现在,它已经被添加并在项目中创建使用 .emdx
文件 ADO.NET实体数据模型
。当我尝试构建它,下面的错误弹出:
Now that it has been added and in the project created a .emdx
file using ADO.NET Entity Data Model
. When I try to build it, the following error pops:
EntityFramework.dll not found (after Compilation)
请帮帮忙!所以,我可以向前继续前进。谢谢
Please help! So that I can move on forward. Thanks
推荐答案
不要卸载Visual Studio的。为Visual Studio 安装使用 EF功能。
Don't uninstall the Visual Studio. Installing the Entity Framework 6 Tools for Visual Studio, only makes it possible to use EF features in the VS IDE.
要在应用程序中安装的NuGet包为EF:
To use EF in your application install the NuGet Package for EF:
Install-Package EntityFramework
的 EntityFramework.dll
和 EntityFramework.SqlServer.dll
添加到您的解决方案。
The EntityFramework.dll
and EntityFramework.SqlServer.dll
are added to your solution.
这篇关于错误:EntityFramework.dll没有发现我安装实体框架6.1.3后的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!