In this article, I am going to give you a brief introduction to the Entity Framework. Before .NET 3.5 as a developer, we often used to write ADO.NET code to perform CRUD operations with the underlying database. For this, we need to create a Connection Object with the database, then Open the Connection, Create the Command Object and execute the Command using Data Reader or Data Adapter. And then we create DataSet or DataTables to store the data in memory to perform different types of Operations on the Data as per the business requirements. Actually, this is a Time-Consuming, and Error-Prone Process. Microsoft has provided a framework called “Entity Framework” to automate all these database-related activities for our application and for this to work, we just need to provide the necessary details to the Entity Framework.
Entity Framework is an Open-Source Object-Relational Mapping (ORM) Framework for .NET applications that enables .NET developers to work with relational data using domain-specific objects without focusing on the underlying database tables and columns where actually the data is stored. That means the Entity Framework eliminates the need for writing the data-access code that developers usually need to write.
Official Definition: Entity Framework is an object-relational mapper (O/RM) that enables .NET developers to work with a database using .NET objects. It eliminates the need for most of the data-access code that developers usually need to write.
Object Relational Mapping framework automatically creates classes based on database tables, and vice versa is also true, that is, it can also automatically generate the necessary SQL to create database tables based on classes. The following diagram illustrates where the Entity Framework fits into our application.
The above diagram shows that the Entity Framework fits between the Data Layer and the database. It saves the data in the database which are stored in the properties of the business entities (domain classes) and also retrieves the data from the database and converts it to business entities objects automatically.
Let’s understand what entity framework can do for us with an example. Assume we have the following 2 tables (Departments and Employees).
We want to display the data from both tables (Departments and Employees) in a console application as shown below.
But Entity Framework can do all of the above automatically for us if we provide the necessary database schema to the Entity Framework. Let us understand this step by step how to achieve the same using Entity Framework.
Please use the below SQL script to create the database EF_Demo_DB, and tables Departments and Employees, and populate the tables with sample data.
Once the database is ready, in the next step, create a new “Console Application” with the name EFDemo as shown in the below image.
Let us first see the example without using Entity Framework and then we will see the same example using Entity Framework. In the below example, we are using ADO.NET to interact with the database to fetch the data and display it in the console.
Now, run the application and you will get the output as expected as shown in the below image.
Here, you can observe we have created the connection object, created the data adapter object, and created Dataset, Data Tables, and DataView objects. And here we are also writing the SQL Commands to fetch the data from the database tables and fill the dataset. We can avoid all these ADO.NET Related things if we use Entity Framework. Let us proceed and see how we can rewrite the same example using Entity Framework using C# language.
To use Entity Framework, we need to add ADO.NET Entity Data Model. To do so, Right-click on the project in solution explorer and select Add => New Item, and then click on Data Section from the left side panel and choose ADO.NET Entity Data Model from the middle panel, Change the name from Model1 to EmployeeDataModel and click on the Add button as shown in the below image.
Once you click on the Add button, it will open the Choose Data Model wizard as shown below. From this window select “EF Designer from database” and click on the Next button as shown in the below image. Here, select the “EF Designer from database” option as we are going to use the Entity Framework Database First Approach.
Once you click on the Next button, It will open choose your data connection wizard as shown below. From this window click on the New Connection button as shown in the below image.
Once you click on the New Connection button, it will open a popup for providing the database details as shown below. From this connection properties screen,
Once you click on the OK button, you will be back on to the “Choose Your Data Connection” window as shown below. Make sure the “Save entity connection settings in App.Config as” checkbox is selected and change the name of the connection string to EF_Demo_DBEntities and then Click on the “Next” button as shown in the below image.
Once you click on the Next button, it will open a popup asking you to choose the Entity Framework version as shown below. From this window, select Entity Framework 6.x and click on the Next button as shown in the below image.
Once you click on the Next button, it will open Choose Your Database Objects as shown below. From the below window, select the “Departments” and “Employees” tables. Change the Model Namespace to “EmployeeModel” and click on the “Finish” button as shown in the below image.
Once you click on the “Finish” button, it should generate the EmployeeDataModel.EDMX file.
Following is the structure of the EDMX file.
The Entity Framework Create Employee and Department classes automatically based on the Employees and Departments Tables. Tables are mapped to classes and columns are mapped to class properties.
Now copy and paste the following code in the main method of the program class as shown below. Here, in this article, I am not going to explain the code. Here, I just want to show how to use Entity Framework. From our next article onwards, I am going to explain everything in detail.
Run the application and notice that Departments and Employees data are displayed as expected as shown in the below image. We have achieved all this without writing a single line of ADO.NET code. If this is not clear at this moment how it works, don’t worry we will discuss everything in detail in our upcoming articles.
Entity Framework is an ORM Tool and ORMs Tools are basically used to increase the developer’s productivity by reducing the redundant task of doing CRUD operation against a database in a .NET Application.
In the next article, I am going to discuss the Architecture of the Entity Framework. Here, in this article, I try to explain Introduction to Entity Framework with an example. I hope this article will help you with your need. I would like to have your feedback. Please post your feedback, question, or comments about this article