如何开始使用 EntityFramework 4.1(或当前为 4.3)
我已经通过 nuget 安装了 EntityFramework(我应该为每个项目都执行此操作吗?或者我可以只引用程序集吗?它们“安装”在哪里?抱歉,新的到 nuget)
我将新的“Ado.NET 实体数据模型”添加到我的项目中并从数据库导入表。 但是,上下文是作为
ObjectContext
添加的,而不是我认为的最新DbContext
。我在这里遗漏了什么吗?
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)
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 latestDbContext
as I would presume. Am I missing something here?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
http://www.asp.net/mvc/tutorials/getting-started-with-ef-using-mvc/creating-an-entity-framework-data-model-for-an-asp-net-mvc-application
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.