Tentei executar o comando 'Enable-Migrations' em um novo projeto e recebi a mensagem:
PM> Enable-Migrations
The term 'Enable-Migrations' 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, verif
y that the path is correct and try again.
At line:1 char:18
+ Enable-Migrations <<<<
+ CategoryInfo : ObjectNotFound: (Enable-Migrations:String) [], CommandNotFoundException
+ FullyQualifiedErrorId : CommandNotFoundException
Mas em todos os outros projetos, o comando é executado corretamente.
Por que isso está acontecendo?
BTW, estou usando o VS2010 Professional SP1
EDIT: Reinstalei com o comando: Install-Package EntityFramework -IncludePrerelease e o problema desapareceu.