How can I use Entity Framework, or something similar within a .NET Standard project?
It appears as though EF is not supported in .NET Standard 2 which is really annoying!
So I have tried using Microsoft.EntityFrameworkCore.SqlServer and icrosoft.EntityFrameworkCore.SqlServer.Design
Whist I can install these packages, I cannot then add a model
I get the error
---------------------------
Microsoft Visual Studio
---------------------------
The project's target framework does not contain Entity Framework runtime assemblies. Please review the target framework information in the project's property page.
---------------------------
OK
---------------------------
How can I get around this?
I am seriously thinking to get rid of .NET Standard out of all my projects but that is a bit drastic!
Paul