I use Entity Framework 7.0.0-beta7. If I want to update my database with 'dnx ef update database' I get a 'done'. But nothing happend. Is there a way to manually (in code) start the migration and debug it?
Update: no it works
I meet a same issue in EF RC1. and i have a finding, hope it can help you. i create a project to involve entity model and EF DBContext. then web project reference the project. run these commands, not working:
but when i move the DBContext class to my web project, models still in other project, it working fine.New result
so in my scenario need make sure DBContext in Web project.