asp.net mvc 5 - EF7 commands do not work in VS2015 CTP 6 -
i'm trying run ef7 migration on fresh asp.net 5 preview project.
steps took:
- created fresh project based on template "asp.net 5 preview starter web"
- build it
- try command
add-migration
in package manager console
result:
the term 'add-migration' not recognized name of cmdlet, function, script file, or operable program.
i try command:
install-package entityframework.commands -pre
i think vs 2015 project redundant, executed still add-migration not recognized.
thanks in advance clues...
nuget commands don't work asp.net 5 projects. you'll need use asp.net 5 command-line versions of commands. (e.g. k ef migration add
) have issue aspnet/dnx#952 open unblock scenario, hasn't seen activity.
to learn more asp.net commands, see post ef7 migrations: asp.net commands.
Comments
Post a Comment