Traté de ejecutar el comando 'Enable-Migrations' en un nuevo proyecto y recibí el mensaje:
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
Pero en todos los demás proyectos, el comando funciona bien.
¿Por qué está pasando esto?
Por cierto, estoy usando VS2010 Professional SP1
EDITAR: reinstalé con el comando: Install-Package EntityFramework -IncludePrerelease y el problema desapareció.