La consola Command Manager habilita las migraciones CommandNotFoundException solo en un proyecto VS específico

Intenté ejecutar el comando 'Habilitar migraciones' en un nuevo proyecto y recibí el mensaje:

<code>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
</code>

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 se fue.

Respuestas a la pregunta(21)

Su respuesta a la pregunta