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.