In file src\Core\Extensions\EnumExtensions.cs there is a function GetDisplayName. Line return displayAttribute?.Name ?? enumValue.ToString(); should be changed to return displayAttribute?.GetName() ?? enumValue.ToString();