i've created a default MVC4 Template Template with authorization. Now i like to add a model (TestModel) to my dbcontext.
public class UsersContext : DbContext
{
public UsersContext()
: base("DefaultConnection")
{
}
public DbSet<UserProfile> UserProfiles { get; set; }
public DbSet<TestModel> TestModel { get; set; }
}
After i changed the dbcontext i've to delete the database and change the name. Is there a more comfortable way ?