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.
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.