Chapter 1
Getting to Know Entity Framework Core
Section 5
EF Capabilities and Architecture
We need to know what key object we will need to manipulate and understand how EF core translates our C# code to SQL code. We also need to update the schema at times. - EF Core exposes database data as objects on .NET, using classes such as DbContext and DbSet - EF is capable of updating the database schema via the migrations API - The provider architecture is the magic behind translating C# or VB.NBET LINQ statements to SQL statements