I have one project that I want to run my update-database against but I have my Models and Context in a separate project.
update-database
If I run enable-migration
enable-migration
Here is a workaround:
Add a class into MyProject(the project for migrations). Make this class inherit the dbcontext(the one in MyProject.MVC).
Then run EF migration commands on MyProject.