How to get the values of an enum into a SelectList

前端 未结 12 949
醉梦人生
醉梦人生 2020-12-13 11:58

Imagine I have an enumeration such as this (just as an example):

public enum Direction{
    Horizontal = 0,
    Vertical = 1,
    Diagonal = 2
}
12条回答
  •  北海茫月
    2020-12-13 12:40

    There is a new feature in ASP.NET MVC 5.1 for this.

    http://www.asp.net/mvc/overview/releases/mvc51-release-notes#Enum

    @Html.EnumDropDownListFor(model => model.Direction)
    

提交回复
热议问题