What are the components of Entity Framework Architecture? • Entity Data Model (EDM), LINQ to Entities, Entity SQL, Object Service, Entity Client, Data Provider, ADO.Net Data Provider.
What are the development approaches are supported in Entity Framework? Code First Approach – where code defines the database. Entity Framework handles creation. A complete detailed implementation of Entity Framework Code First Approach here. Database First Approach – regular approach used where database is first created or already exists. Model First Approach – where model is drawn first that further generate database scripts.