2

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
  • The Entity Data Model is part of the Entity Framework (which is the model, the modelling tools, and the runtime) Commented Dec 7, 2014 at 17:33

1 Answer 1

2

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

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.