Assuming we have some string extension method that splits camel casing (as one might use for presentation of an enum), is there any way that this can be applied to the asp-items
attribute on a select list as per
<select asp-items="Html.GetEnumSelectList<Enum>()">
... </select>
Or do we just have to generate a new SelectList()
in the ViewModel to achieve this?