Junior EF Core

What is DbSet<T>?

How does it map to database tables?

DbSet<T> represents a collection of entities of type T in the context. Each DbSet maps to a

table in the database, where T is the type of the entity.

More from Entity Framework Core Tutorial

All questions for this course