I\'m using .NET 4.0, MVC3, and EF5 with code first.
My solution is split up into three projects, with the dependencies as indicated:
Project.Web -> Project.B
None of the other answers above answered my question.
I ended up ditching the Package Manager Console because it seemed to be using EF6 instead of EFCore...
Luckily, you can run these Entity Framework commands from plain ol' PowerShell:
C:\MyRepository\MyProject dotnet ef migrations add InitialDbCreation
(Make sure you're in the project directory that contains the DbContext
inheritance).
And finally, I got the real errror:
Your startup project 'FantasyFitness' doesn't reference Microsoft.EntityFrameworkCore.Design.
This package is required for the Entity Framework Core Tools to work.
Ensure your startup project is correct, install the package, and try again.
So, I go to the "Manage NuGet Packages" on the project and install Microsoft.EntityFrameworkCore.Design
, close all my IDE's that may be locking the files, and then it finally worked.
Note that I didn't even have to run the Enable-Migration
command to get this to work... it's magic.