ADO.NET Entity Framework and ADO.NET Entity Data Model?

江枫思渺然 提交于 2019-12-24 05:13:09

问题


This is confusing me a bit... When people talk about ADO.NET Entity Framework are they actually talking about ADO.NET Entity Data Model?


回答1:


No, the Entity Framework includes several components such as the Entity Data Model Wizard, which allows you to create an ADO.NET Entity Data Model (via Database First or Design First workflow, or Code First). The data model is stored in an EDMX file (for Database First or Design First) and can be viewed and edited in the Entity Framework Designer. For Code First, your data model is your c# classes along with a DbContext class.

For more info, see this video: Entity Framework Development Workflows https://msdn.microsoft.com/en-us/data/jj590134



来源:https://stackoverflow.com/questions/27345135/ado-net-entity-framework-and-ado-net-entity-data-model

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!