Asp.net – What are the differences between calling context.Users and context.Set<User>?
Deepening my knowledge in ASP.NET, I have a question that arises from the following class: public class AppDbContext : DbContext { public AppDbContext(DbContextOptions<AppDbContext> options) : base(options) { } public DbSet<Route> Routes { get; set; } } What is the difference…