@Html.EnumDropDownListFor in Asp.net Core

后端 未结 4 1561
隐瞒了意图╮
隐瞒了意图╮ 2021-02-07 08:48

I\'m porting an MVC5 app in Asp.net Core. I cannot find

@Html.EnumDropDownListFor()

was it deprecated and is there a substitute? Is there any doc

4条回答
  •  鱼传尺愫
    2021-02-07 09:38

    Or

    @model Enum
    @Html.DropDownListFor(m => m, Html.GetEnumSelectList(typeof(Enum)))
    

提交回复
热议问题