I\'m trying to use the Html.DropDownList extension method but can\'t figure out how to use it with an enumeration.
Html.DropDownList
Let\'s say I have an enumeration like
In .NET Core you can just use this:
@Html.DropDownListFor(x => x.Foo, Html.GetEnumSelectList())