Erik Ejlskov Jensen takes us through auto-pluralization with Entity Framework Core:
If you are using the EF Core console command
dotnet ef dbcontext scaffold
or Package Manager Console in Visual StudioScaffold-DbContext
, you can hook up pluralization via code in your project.First you must add a reference to the Microsoft.EntityFrameworkCore.Design package from your startup project.
Click thorugh for a code sample.