DbSet...In Entity Framework, the DbSet class represents an entity set that can be used for the database operation, such as create, read, update, and delete....The context class must include the DbSet type properties for the entities which map to database tables and views....The DbSet is an implementation of the Repository pattern....public class BookStore : DbContext
{
public BookStore() : base(FiddleHelper.GetConnectionStringSqlServer())
{
}
public DbSet<Author> Authors { get; ...