I'm working on MVC, AngularJS and EntityFramework project in VS2015. We are team of multiple developers. The code is shared in source control. But the real issue is I'm not much experienced with Code Migrations. Whenever I start my work and get latest on the source control, I have to update the database to add the new migrations in my local db. But whenever I try
"update-migrations -targetmigration:xxx"
script, it always throws me an error. I also tried this steps showing in this page: Reset Entity-Framework Migrations but it didn't work.
Also my Configuration class says this:
public Configuration()
{
AutomaticMigrationsEnabled = false;
ContextKey = "WebAccounts";
}
Which I'm not supposed to change anything.
Is there any simple and straight forward way or steps to follow?
Thanks.