I was wondering if I could set-up my EntityFrameworkCore in a .NET Standard 2.0 project easily. I was following this Tutorial but it requires either .NET Core or Framework.<
The following works from the dotnet CLI assuming you already have a executable startup project in the solution:
dotnet ef dbcontext scaffold "Server=myServerName; Database=dbName; User Id=someUser; Password=myPassword123;" Microsoft.EntityFrameworkCore.SqlServer --project ../MyLibraryProject/ -c MyDbContext -o FolderName
you can find more information here:
https://docs.microsoft.com/en-us/ef/core/miscellaneous/cli/dotnet#other-target-frameworks