Here I want to share another method that prevent the error of model backing when context changed is:
1) Open your DbContext File
2) Add namespace using Microsoft.AspNet.Identity.EntityFramework;
3) public MyDbContext() : base("name=MyDbContext") { Database.SetInitializer(new DropCreateDatabaseAlways()); }