如何开始使用 EntityFramework 4.1(或当前为 4.3)

发布于 2025-01-08 02:43:20 字数 304 浏览 1 评论 0原文

  1. 我已经通过 nuget 安装了 EntityFramework(我应该为每个项目都执行此操作吗?或者我可以只引用程序集吗?它们“安装”在哪里?抱歉,新的到 nuget)

  2. 我将新的“Ado.NET 实体数据模型”添加到我的项目中并从数据库导入表。 但是,上下文是作为 ObjectContext 添加的,而不是我认为的最新 DbContext 。我在这里遗漏了什么吗?

  1. I've installed EntityFramework through nuget (should I do this for every project? Or can I just reference the assemblies? Where are they 'installed'? Sorry new to nuget)

  2. I add a new "Ado.NET Entity Data Model" to my project and import tables from the database. However the context is added as ObjectContext not as the latest DbContext as I would presume. Am I missing something here?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

何必那么矫情 2025-01-15 02:43:20
  1. 是的,为每个项目安装包。程序集安装在解决方案文件夹中的包文件夹中。
  2. ADO.NET 实体数据模型首先适用于数据库。在这里阅读数据库优先与模型优先与代码优先的解释:
  1. Yes, install the package for each project. The assemblies are installed in a packages folder in the solution folder.
  2. The ADO.NET Entity Data Model is for Database First. Read an explanation of Database First vs. Model First vs. Code First here:

http://www.asp.net/mvc/tutorials/getting-started-with-ef-using-mvc/creating-an-entity-framework-data-model-for-an-asp-net-mvc-application

阪姬 2025-01-15 02:43:20

http://asp.net 是一个很好的起点。阅读教程。它们涵盖了 的 EF 数据访问WebForms

A great place to start is http://asp.net. Read the tutorials. They cover data access with EF for both WebForms and MVC.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文