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?
System.Data.Entity.Design.PluralizationServicesis not available in .NET Core or .NET.See the docs here (try switching that page to .NET 5/.NET Core; you cannot) and also this comment from the devs.
Possible replacements include PluralizeService.Core, Pluralize.NET, or Humanizer.