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
@Html.DropDownListFor(model => model.Type, Enum.GetNames(typeof(Rewards.Models.PropertyType)).Select(e => new SelectListItem { Text = e }))