Click here to Skip to main content
15,867,568 members
Articles / Web Development / ASP.NET

An Introduction to Entity Framework for Absolute Beginners

Rate me:
Please Sign up or sign in to vote.
4.74/5 (248 votes)
9 Apr 2012CPOL5 min read 1M   23.5K   375   127
An introduction to Entity Framework for absolute beginners.

Introduction

This article introduces Entity Framework to absolute beginners. The article is meant for developers who are primarily using ADO.NET to write their data access layers. Many experienced developers will find this article very basic but since the article is written from the perspective of beginners, I've tried to keep things simple.

Background

ADO.NET is a very strong framework for data access. ADO.NET has been around since many years and there are a lot of systems running over ADO.NET. Developers who are totally oblivious to the concept of ORMs will probably be asking "What is Entity Framework? What are the benefits of using it and is it an alternative to ADO.NET?"

Well, to answer the first question about what is Entity Framework, Entity Framework is an Object Relational Mapper (ORM). It basically generates business objects and entities according to the database tables and provides the mechanism for:

  1. Performing basic CRUD (Create, Read, Update, Delete) operations.
  2. Easily managing "1 to 1", "1 to many", and "many to many" relationships.
  3. Ability to have inheritance relationships between entities.

and to answer the second question, the benefits are:

  1. We can have all data access logic written in higher level languages.
  2. The conceptual model can be represented in a better way by using relationships among entities.
  3. The underlying data store can be replaced without much overhead since all data access logic is present at a higher level.

and finally, the last question that whether it is an alternative to ADO.NET, the answer would be "yes and no". Yes because the developer will not be writing ADO.NET methods and classes for performing data operations and no because this model is actually written on top of ADO.NET, meaning under this framework, we are still using ADO.NET. So let us look at the architecture of Entity Framework (diagram taken from MSDN):

Entity framework article image

Using the code

Let's try to understand the ease of use that Entity Framework provides by performing simple CRUD operations. Once we look at the code and how effortlessly and efficiently we can do these operations, the benefits of Entity Framework will become quite obvious.

Creating the database

Let's have a simple database with one table. Let's create a simple table for Contacts and we will perform CRUD operations on this table.

Entity framework article image

Adding the Entity Model to the Website

Once we have the database ready, we can add the entity model to our website. We can do this by adding an ADO.NET Entity Data Model to the website.

Entity framework article image

Once we select to add this data model to our website, we will have to select the approach we want to take for our Model's contents.

Entity framework article image

What this selection means is that we can either choose to generate the entity model from an existing database schema or we can design the entity model here and then later hook it up to the database. Since we already have the database ready, we will use the first option. Once the Model is generated, the Entity for each table is generated. The generated entity for our contact table is:

Entity framework article image

Also, the classes for performing database operations are also created. We just need to know how to use these classes to perform database operations.

Entity framework article image

Insert operation

Let us create a simple page to perform an insert operation.

Entity framework article image

Now once the user chooses to insert the values into the database, the actual data operation can be performed by using the AddObject method of the Model class entity collection. The following code snippet show how to perform the insert.

C#
Contact con = new Contact();
con.fname = TextBox1.Text;
con.lname = TextBox2.Text;
con.phone = TextBox3.Text;

ContactsDb db = new ContactsDb();
db.Contacts.AddObject(con);
db.SaveChanges();

This will insert the record into the table. You can notice the simplicity and efficiency of the code we wrote to perform the insertion.

Reading all the records

There are scenarios when we want to read all records. Let's say we are making a page that will display all the contact information in a single page.

Entity framework article image

We can retrieve the collection of Entities using the Model object to achieve this. The code snippet below will show how that can be done.

C#
ContactsDb db = new ContactsDb();
Repeater1.DataSource = db.Contacts;
Repeater1.DataBind();

Selecting a specific record

If we want to select a specific record from the table, we can use the SingleOrDefault method on the Model's entities collection. Let's say we want the functionality of updating/deleting a record on a single page then we will first have to select the record based on the ID, then update/delete the selected record.

Entity framework article image

Selection of any particular record (Contact) based on ID can be done as:

C#
int idToupdate = Convert.ToInt32(Request.QueryString["id"].ToString());
ContactsDb db = new ContactsDb();
Contact con = db.Contacts.SingleOrDefault(p => p.id == idToupdate);

Once this code is executed, the Contact object will contain the required values.

Updating the record

If we want to update a record, then a simple update operation can be performed as:

C#
int idToupdate = Convert.ToInt32(Request.QueryString["id"].ToString());
ContactsDb db = new ContactsDb();
Contact con = db.Contacts.SingleOrDefault(p =>  p.id == idToupdate);

con.phone = TextBox1.Text;
db.SaveChanges();

Once this code executes, the value of phone number will be updated by a new value which is retrieved from TextBox1.

Deleting a record

If we want to delete a particular record then we can perform a delete operation by using the DeleteObject function. The following code snippet demonstrates the same:

C#
//delete this contact
int idToupdate = Convert.ToInt32(Request.QueryString["id"].ToString());
ContactsDb db = new ContactsDb();
Contact con = db.Contacts.SingleOrDefault(p => p.id == idToupdate);

db.Contacts.DeleteObject(con);
db.SaveChanges();

Now that we have the basic CRUD operations performed on the database using the Entity Framework.

A note on Relationships and Lazy Loading

To understand the Entity Framework we need to understand some things like naming conventions, relationships between tables, and relationships between entities. Also, the concept of lazy loading once fully understood will give the power to the developer to use the Entity Framework efficiently.

Note: Since this is an introductory article on Entity Framework we have not discussed these things. Perhaps we will discuss them in a separate article.

Points of interest

Entity Framework has been in use for some time now. But there are many developers who are still getting started with Entity Framework. This article was meant as an overview of the Entity Framework. This should not be treated as a complete tutorial. Also, the code written is very simple and there is a lot of scope for optimization but since the idea here is to understand Entity Framework, I tried to keep the code simple and readable rather and optimal.

Note: To run the solution, please change the database path of ConnectionString in the web.config file.

History

  • 09 April 2012: First version.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Architect
India India

I Started my Programming career with C++. Later got a chance to develop Windows Form applications using C#. Currently using C#, ASP.NET & ASP.NET MVC to create Information Systems, e-commerce/e-governance Portals and Data driven websites.

My interests involves Programming, Website development and Learning/Teaching subjects related to Computer Science/Information Systems. IMO, C# is the best programming language and I love working with C# and other Microsoft Technologies.

  • Microsoft Certified Technology Specialist (MCTS): Web Applications Development with Microsoft .NET Framework 4
  • Microsoft Certified Technology Specialist (MCTS): Accessing Data with Microsoft .NET Framework 4
  • Microsoft Certified Technology Specialist (MCTS): Windows Communication Foundation Development with Microsoft .NET Framework 4

If you like my articles, please visit my website for more: www.rahulrajatsingh.com[^]

  • Microsoft MVP 2015

Comments and Discussions

 
GeneralMy vote of 5 Pin
Member 292641819-Nov-12 1:33
Member 292641819-Nov-12 1:33 
GeneralMy vote of 4 Pin
Member 403116612-Nov-12 0:14
Member 403116612-Nov-12 0:14 
GeneralMy vote of 5 Pin
Bhupendra Chauhan1-Nov-12 19:26
professionalBhupendra Chauhan1-Nov-12 19:26 
GeneralNice Article Rahul Pin
Shivanand Arur15-Oct-12 21:19
Shivanand Arur15-Oct-12 21:19 
GeneralThanks... Pin
Kinzever8-Oct-12 19:48
Kinzever8-Oct-12 19:48 
GeneralMy vote of 5 Pin
Vaso Elias8-Oct-12 2:39
Vaso Elias8-Oct-12 2:39 
GeneralVote 3 Pin
Vaso Elias8-Oct-12 2:37
Vaso Elias8-Oct-12 2:37 
Questionrating Pin
krupeshshah4-Oct-12 20:11
krupeshshah4-Oct-12 20:11 
vote of 4 !! nice article
k.k.shah

GeneralMy vote of 3 Pin
Bhawesh jha27-Sep-12 23:32
Bhawesh jha27-Sep-12 23:32 
AnswerArticle of the Day on Microsoft's site Pin
Rahul Rajat Singh25-Sep-12 19:01
professionalRahul Rajat Singh25-Sep-12 19:01 
GeneralMy vote of 5 Pin
AnantD23-Sep-12 23:56
AnantD23-Sep-12 23:56 
AnswerRe: My vote of 5 Pin
Rahul Rajat Singh24-Sep-12 1:02
professionalRahul Rajat Singh24-Sep-12 1:02 
GeneralMy vote of 5 Pin
Velkumar Kannan21-Sep-12 20:55
Velkumar Kannan21-Sep-12 20:55 
AnswerRe: My vote of 5 Pin
Rahul Rajat Singh21-Sep-12 22:42
professionalRahul Rajat Singh21-Sep-12 22:42 
QuestionSmaller typos Pin
Michael Pauli19-Sep-12 2:08
Michael Pauli19-Sep-12 2:08 
QuestionDatabase not working Pin
n_sasi10-Sep-12 1:47
n_sasi10-Sep-12 1:47 
AnswerRe: Database not working Pin
Rahul Rajat Singh10-Sep-12 18:04
professionalRahul Rajat Singh10-Sep-12 18:04 
NewsVery Nice! Pin
ybonda4-Aug-12 0:17
ybonda4-Aug-12 0:17 
GeneralMy vote of 5 Pin
amit singhniet31-Jul-12 0:01
amit singhniet31-Jul-12 0:01 
GeneralMy vote of 5 Pin
Sk. Tajbir14-Jun-12 2:59
Sk. Tajbir14-Jun-12 2:59 
QuestionMy vote of 3 Pin
Clifford Nelson17-May-12 7:45
Clifford Nelson17-May-12 7:45 
GeneralMy vote of 3 Pin
Sandesh M Patil24-Apr-12 7:27
Sandesh M Patil24-Apr-12 7:27 
GeneralMy vote of 4 Pin
SomPoddar23-Apr-12 9:36
SomPoddar23-Apr-12 9:36 
GeneralMy vote of 5 Pin
Anurag Gandhi21-Apr-12 9:25
professionalAnurag Gandhi21-Apr-12 9:25 
General10x Pin
raananv18-Apr-12 10:06
raananv18-Apr-12 10:06 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.