I have two DbContext
s in the database and want to make one of them only reference the one table (class):
dotnet ef migrations add Mall20200325 --context ApplicationDbContext
And in the ApplicationDbContext
there is only one DbSet:
public DbSet<Models.User> Users { get; set; }
But it will still migrate other tables.
How to do I accomplish this?