Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

update-database error - NuGet Package (EntityFramework.SqlMigrations)

i installed EntityFramework.SqlMigrations NuGet Package and i get this error . it worked for me in the past and somehow, now it does not work.

PM> update-database
The term 'update-database' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the 
path is correct and try again.
At line:1 char:16
+ update-database <<<< 
    + CategoryInfo          : ObjectNotFound: (update-database:String) [], CommandNotFoundException
    + FullyQualifiedErrorId : CommandNotFoundException
like image 885
mordechai Avatar asked Sep 27 '11 10:09

mordechai


2 Answers

Occurs with EF5 RTM, VS2012 RTM.

I experienced this problem today. I executed "Update-Package EntityFramework" in the PM Console. No changes were reported by NuGet and the problem persisted. I then restarted VS2012 and re-attempted Update-Database and it worked as expected. It's not clear what caused this problem, it's also not clear whether the Update-Package contributed to correcting it or not.

First try restarting Visual Studio, then try Update-Package EntityFramework followed by a restart.

like image 139
Shaun Wilson Avatar answered Sep 19 '22 04:09

Shaun Wilson


I just used this command:

Update-Package EntityFramework -Reinstall
like image 30
Alberto Monteiro Avatar answered Sep 21 '22 04:09

Alberto Monteiro