0

全部:

我们使用 ASP.NET Web 窗体开始了我们的项目。

我们的 ASP.NET C# web 应用程序用于以下环境

.NET Framework 4

ASP.NET Web Forms.

IIS 7

Windows 2008

Visual Studio 2010

.NET IDE

C#

HTTPS ( SSL )

我们想要集成 Microsoft Entity Framework 版本 5。因此,我从 Visual Studio 2010 中的包管理器控制台运行了以下命令。

PM> Install-Package EntityFramework -Version 5.0
You are downloading EntityFramework from Microsoft, the license agreement to which is        available at http://go.microsoft.com/fwlink/?LinkId=253898&clcid=0x409. Check       the package for additional dependencies, which may come with their own license       agreement(s). Your use of the package and dependencies constitutes your         acceptance of their license agreements. If you do not accept the license         agreement(s), then delete the relevant components from your device.
   Successfully installed 'EntityFramework 5.0.0'.
  Successfully added 'EntityFramework 5.0.0' to PivotServer.

键入“get-help EntityFramework”以查看所有可用的实体框架命令。

如上所示,它正确安装了 EntityFramework 5.0.0。

此外,在我的 ASP.NET Web 应用程序中,安装会自动将 EntityFramework dll 添加到 References。

但是,如果我写以下

“使用实体框架”

进入我的 C# cs 文件之一,然后它指出 EntityFramework 未定义。

我还卸载了 EntityFramework 包,然后重新安装它,但它仍然无法识别 EntityFramework。

请建议我必须采取哪些步骤才能在我的 ASP.NET Web 项目中定义 EntityFramework 命名空间。

4

1 回答 1

1

没有 EntityFramework 命名空间。使用对象浏览器查看您应该使用哪些命名空间。

于 2013-04-16T19:33:57.443 回答