Using EntityFrameworkCore compiled to .NET Standard 2.0 vs 2.1
When I add the nuget containing our EF Core 3.1 Entities and Context LINQPad does not recognize it and I get a little triangle message saying it cannot find the a lib\netstandard2.1 folder. However with EF Core 3.1 it should only require .NET Standard 2.0. Is there something I need to do in order for it to allow me to use the .NET Standard 2.0 compatible library? I did try my NuGet package in a .NET Core 3.1 web app and it worked as expected so I think the package is OK.
I double checked and EF Core 3.1 is .NET Standard 2.0 compatible..
https://docs.microsoft.com/en-us/ef/core/platforms/
Thank you in advance.
Comments
Rather than adding a NuGet package, have you tried using the driver provided and pointing it directly to the DLL? Click "Add Connection", and then choose EF Core in the bottom listbox.