I was studying this tutorial asp.net Movie Tutorial and I have 2 simple files in my model.
public class Movie
{
public int ID { get; set; }
[Requ
you can use enable Migration like this :
Enable Migration -ContextTypeName UsersContext
or you can define public DbSet in your MovieDBContext like this :
public class MovieDBContext : DbContext
{
public DbSet Movies { get; set; }
public DbSet User{get;set}
}
and use this way :
Enable Migration -ContextTypeName MovieDBContext