entity framework - How to enable migrations in Visual Studio for Mac -
i have visual studio mac , i'm trying learn xamarin azure using following tutorial: https://adrianhall.github.io/develop-mobile-apps-with-csharp-and-azure/chapter3/server/
at point, have enable ef migrations. tutorial says: go view -> other windows -> package manager console.
unfortunately there no package manager console in visual studio mac... how handle things enable-migrations, add-migration or update-database on mac?
this not supported visual studio mac.
there nuget extensions addin adds powershell console visual studio mac entity framework powershell commands unlikely work since typically specific visual studio specific. powershell support limited since uses pash, open source clone of powershell, not implemented.
if using entity framework 7 (or calling entity framework core) should able use commands .net core command line.
dotnet ef migrations ... if using entity framework 6 need find way call migrations instead of using powershell. entity framework 6 has powershell commands specific visual studio. ported sharpdevelop involved re-writing them work ide.
Comments
Post a Comment