MVP Helps You Learn ADO.NET Entity Framework
The ADO.NET Entity Framework is an Object/Relational mapping framework and is a set of technologies in ADO.NET, for developing applications that interacts with data. Suprotim Agarwal, an ASP.NET MVP from India, has authored a series on Entity Framework 4.0 on his popular developer portal – dotnetcurry.com
- Entity Framework 4.0 FAQ – Getting Started Guide - In this article, he introduces Entity Framework 4.0, the history behind this framework and why it has become the recommended LINQ-based Data Access technology over LINQ To SQL
- Create an Entity Data Model From a Database - In this article, he demonstrates how to create our first Entity Framework application using Visual Studio 2010. We will create an Entity Data Model (EDM) from an existing database.
- Exploring how the Entity Data Model (EDM) Generates Code and Executes Queries - In this article, he explains what happens behind the scenes in the Entity Data Model and also look at the files responsible to generate the code and execute queries on your behalf.
- Model-First Development in Entity Framework 4.0 - Create a Database from a Model - Developers who practice the Domain-Driven Development (DDD) style create a conceptual model first. The idea is to design the application based on a model. EF 4.0 supports creating the model first and generating a database from the model and in this article, he has shown you how to do model-first development.
- Create an Entity Framework Model and Use it in Multiple Projects - This article shows the steps required to create an Entity Data Model which can be used in multiple projects.
- Add, Update and Delete Objects in Entity Framework 4.0 - In this article, he shows how to Add, Update and Delete objects in our conceptual Entity model and push the changes to the underlying database.
Comments
- Anonymous
December 20, 2010
Thanks for the mention :)