EF Core

Entity Framework Core also known as EF Core is the latest version of Microsoft’s Entity Framework. It is an Object Relational Mapping (O/RM) framework for performing database operations. It supports LINQ, tracking, updates, and schema migrations.

entity framework core ef core

In these series of Entity Framework Core Tutorials we will learn how to use this ORM in our ASP.NET Core applications and create database rich web applications and websites.

Every tutorial is explained in step-by-step manner and provided with exmaples and codes wherever needed.

In the end of each tutorial a link for downloading the codes is given. Use that link to download the code in your PC and run them in Visual Studio.

These tutorials are specially made for programmers like you to understand EF Core as quickly as possible.

Entity Framework Core vs ADO.NET

ADO.NET stands for ActiveX Data Object used for performing database operations but unlike Entity Framework Core here we have to build everything from scratch. Thus we can say developing projects with ADO.NET will take much more of our time. Entity Framework Core is a layer built on top of ADO.NET and provides us with prebuilt function for performing operations. This makes the development time much less.

Entity Framework Core Tutorials

Check the below list of Entity Framework Core tutorials.