Back to course

Introduction to Entity Framework Core

.NET Zero to Hero: Master C# and Modern App Development

EF Core: The ORM

Entity Framework (EF) Core is an Object-Relational Mapper (ORM). It allows you to interact with a database using C# objects, so you don't have to write much SQL code.

  • DBContext: The main class that coordinates EF Core functionality for a given data model.