Loading

Microsoft Entity Framework

What is the Entity Framework?. The Complete Microsoft Entity Framework Developer Course 2023 [Videos].

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.”

What is an Object-Relational Mapping Framework?

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.

Where Entity Framework used in our application

The above diagram shows that the Entity Framework fits between the business entities (i.e. the domain classes) 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.

Lets understand what an entity framework can do for us with an example.

Assume we have the following 2 tables (Departments and Employees). 

what entity framework can do for us with an example

We want to display the data from both tables (Departments and Employees) in a console application as shown below. 

Introduction to Entity Framework  
To achieve this
  1. We need to create Department and Employee classes
  2. We need to write ADO.NET code to retrieve the data from the database
  3. Once the data is retrieved we need to create Department and Employee objects and populate them with the retrieved data.

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 of how to achieve the same using Entity Framework.

Step1: Creating the Database Schema

Please use the below SQL script to create the database (EF_Demo_DB), tables (Departments and Employees), and populate the tables with sample data.

-- Create the EF_Demo_DB database.
CREATE DATABASE EF_Demo_DB;
GO
-- Use EF_Demo_DB database
USE EF_Demo_DB;
GO
-- Create Departments table
CREATE TABLE Departments
(
ID INT PRIMARY KEY IDENTITY(1,1),
Name VARCHAR(50),
Location VARCHAR(50)
)
Go
-- Create Employees table.
CREATE TABLE Employees
(
ID INT PRIMARY KEY IDENTITY(1,1),
Name VARCHAR(50),
Email VARCHAR(50),
Gender VARCHAR(50),
Salary INT,
DepartmentId INT FOREIGN KEY REFERENCES Departments(ID)
)
Go
--Populate the Departments table with some test data














Go

Step2: Create a Console Application

Once the database is ready, in the next step, create a new “Console Application” with the name EFDemo as shown in the below image.

Create a Console Application

Step3: Adding ADO.NET Entity Data Model

Once you create the Console Application, next 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.

Adding ADO.NET Entity Data Model

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.

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.

choose your data connection wizard

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,

  1. Select â€œMicrosoft SQL Server” as Data source, and “.Net Framework Data Provider for SQL Server” option from the â€œData provider” drop-down list. Click Continue.
  2. On the “Connection Properties” screen, specify SQL Server Name.
  3. Specify the Authentication you want to use.
  4. Select the database from the “Select or enter a database name” drop-down list.
  5. Finally â€œTest connection” and click â€œOK”

Net Framework Data Provider for SQL Server

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.

Introduction to Entity Framework

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.

Entity Framework Version

Once you click on the Next button, it will open Choose Your Database Objects as shown below. From the below window, select “Departments” and “Employees” tables. Change the Model Namespace to “EmployeeModel” and click on the “Finish” button as shown in the below image. 

Choose Your Database Objects in Entity Framework database First Approach

Once you click on the “Finish” button, it should generate the EmployeeDataModel.edmx file. 

EDMX File

Following is the structure of the EDMX file.

File structure of 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.

Using Entity Framework:

Now copy and paste the following code in the main method of program class as shown below. Here, in this Video, I am not going to explain the code. Here, I just want to show how to use Entity Framework. From our next Video onwards, I am going to explain each and everything in detail.

namespace EFDemo
{
class Program
{
static void Main(string[] args)
{
using (EF_Demo_DBEntities DBEntities = new EF_Demo_DBEntities())
{
List<Department> listDepartments = DBEntities.Departments.ToList();
Console.WriteLine();
foreach(Department dept in listDepartments)
{
Console.WriteLine(" Department = {0}, Location = {1}", dept.Name, dept.Location);
foreach(Employee emp in dept.Employees)
{
Console.WriteLine(" Name = {0}, Email = {1}, Gender = {2}, salary = {3}",
emp.Name, emp.Email, emp.Gender, emp.Salary);
}
Console.WriteLine();
}
Console.ReadKey();
}
}
}
}

Run the application and notice that departments and employees data are displayed as expected. 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, then dont worry we will discuss each and everything in detail in our upcoming Videos.

Entity Framework Features:
  1. Cross-platform: EF Core is a cross-platform framework which means it can run on Windows, Linux, and Mac operating systems.
  2. Modeling: EF (Entity Framework) creates an EDM (Entity Data Model) based on POCO (Plain Old CLR Object) entities with get/set properties of different data types. It uses this model also when querying or saving entity data to the underlying database.
  3. Querying: EF allows us to use LINQ queries (C#/VB.NET) to retrieve data from the underlying database. The database provider will translate this LINQ queries to the database-specific query language (e.g. SQL for a relational database). EF also allows us to execute raw SQL queries directly to the database.
  4. Change Tracking: EF keeps track of changes that occurred to instances of our entities (Property values) that need to be submitted to the database.
  5. Saving: EF executes INSERT, UPDATE, and DELETE commands to the database based on the changes that occurred to our entities when we call the SaveChanges() method. EF also provides the asynchronous SaveChangesAsync() method.
  6. Concurrency: EF uses Optimistic Concurrency by default to protect overwriting changes made by another user since data was fetched from the database.
  7. Transactions: EF performs automatic transaction management while querying or saving data. It also provides options to customize transaction management.
  8. Caching: EF includes the first level of caching out of the box. So, repeated querying will return data from the cache instead of hitting the database.
  9. Built-in Conventions: EF follows conventions over the configuration programming pattern, and includes a set of default rules which automatically configure the EF model.
  10. Configurations: EF allows us to configure the EF model by using data annotation attributes or Fluent API to override default conventions.

See All

Comments (430 Comments)

Submit Your Comment

See All Posts

Related Posts

Microsoft Entity Framework / Audio Video

How we can install sql server and create db?

How we can install sql server and create db?
24-aug-2024 /37 /430

Microsoft Entity Framework / Blog

What is 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.
11-Feb-2022 /37 /430

Microsoft Entity Framework / Blog

What is Entity Framework Architecture?

In this article, I am going to discuss the Entity Framework Architecture in Detail. Please read our previous article where we discussed the Overview of the Entity Framework. At the end of this article, you will understand the following pointers in detail.
11-Feb-2022 /37 /430