My .NET 4.0 app used the PluralizationServices located in System.Data.Entity.Design.PluralizationServices. When I went to convert my app to .NET CORE 5.0, the compiler complains:
The type or namespace name 'PluralizationService' could not be found (are you missing a using directive or an assembly reference?)
I've tried using System.Data, and using System.Data.Common.
Where do I find this in .NET 5.0?