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:

  1. created fresh project based on template "asp.net 5 preview starter web"
  2. build it
  3. 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

Popular posts from this blog

javascript - AngularJS custom datepicker directive -

javascript - jQuery date picker - Disable dates after the selection from the first date picker -