What is ORM (Object-Relational Mapping)?
How does EF Core
implement it?
ORM is a technique that maps objects in code to relational database tables. EF Core
implements ORM by mapping .NET classes (entities) to database tables using DbContext,
DbSet, and conventions or Fluent API.