Hi, i am using windows 10. I am trying to install entity framework 3.1.0 to .netstandard 2.0. I installed these packages ok:
(also have a console project installed in this .netstandard solution)
Microsoft.EntityFrameworkCore.3.1.0
Microsoft.EntityFrameworkCore.Design.3.1.0
Microsoft.EntityFrameworkCore.SqlServer.2.2.2
Microsoft.EntityFrameworkCore.Tools.3.1.0
Now i am trying to create my database classes in my .netstandard project. I use this command in the package manager console :
PM> Scaffold-DbContext 'Data Source=.\MSSQLSERVER2012;Initial Catalog= MbsAnalysisData;User Id = eflogin; Password= eflogin'Microsoft.EntityFrameworkCore.SqlServer -output Models
Build started...
Build succeeded.
System.TypeLoadException: Method 'Create' in type 'Microsoft.EntityFrameworkCore.SqlServer.Scaffolding.Internal.SqlServerDatabaseModelFactory' from assembly 'Microsoft.EntityFrameworkCore.SqlServer, Version=2.2.2.0, Culture=neutral, PublicKeyToken=adb9793829ddae60' does not have an implementation.
Not sure what i am doing wrong?
thanks for any help or advice