Udemy
    •  
    •  
    •  
    •  
    •  
    •  
    •  
    •  
Turn what you know into an opportunity and reach millions around the world.
Learn More
Your cart is empty.
Keep shopping
Learn Entity Framework
Rating: 3.9 out of 5(231 ratings)
5,873 students

Learn Entity Framework

Entity Framework automates all database related activities for your application.
Created byVahid Cheshmy
Last updated 9/2019
English

What you'll learn

  • Understand Entity framework
  • How Entity framework works
  • how to use DBContext
  • understand entity in entity framework
  • entity framework approaches

Course content

1 section8 lectures30m total length
  • Introduction0:59
  • What is Entity framework?2:47

    Prior to .NET 3.5, we (developers) often used to write ADO.NET code orEnterprise Data Access Block to save or retrieve application data from theunderlying database. We used to open a connection to the database, create aDataSetto fetch or submit the data to the database, convert data from the DataSet to .NET objects or vice-versa to apply business rules.

  • Entity framework workflow4:04

    Before starting your code it’s very important to understand the process of using EF in your application.

    in this video you will learn how EF acts in visual studio.

  • How entity framework works?3:48

    Entity Framework API includes mapping domain classes to the database schema,translate & execute LINQ queries to SQL, track changes occurred on entities during their lifetime, and save changes to the database.

  • what is DbContext?8:48

    Context Class is a most important part in EF,It shows a session with the underlying database using which you can perform CRUD (Create, Read, Update, Delete) operations.

  • Entity in entity framework4:19

    An entity in Entity Framework is a class that maps to a database table. This class must be included as a DbSet<TEntity> type property in the DbContextclass. EF API maps each entity to at able and each property of an entity to a column in the database

  • Entity framework approaches3:10

    There are three different approaches you can use while developing your application using Entity Framework:

    1. Database-First

    2. Code-First

    3. Model-First

  • Final words2:05

Requirements

  • intermediate knowledge about programming such as C#, VB
  • basics of OOP

Description

Prior to .NET 3.5, we (developers) often used to write ADO.NET code or Enterprise Data Access Block to save or retrieve application data from the underlying database. We used to open a connection to the database, create a DataSet to fetch or submit the data to the database, convert data from the DataSet to .NET objects or vice-versa to apply business rules. This was a cumbersome and error prone process. Microsoft has provided a framework called "Entity Framework" to automate all these database related activities for your application.

Who this course is for:

  • intermediate C# developers