Binding to a DropDownList in MVC3

2020-02-07 07:09发布

Previously, I was using this in my model

 public List<SelectListItem> StatusList { get; set; }
 public string Status { get; set; }    

and this in my view to bind to the Dropdownlist

 @Html.DropDownListFor(model => model.Status, Model.StatusList, "")

but if I want to use

  public List<ICode> StatusList { get; set; }

where ICode is as below

 public interface ICode
{
    int Id { get; set; }
    ICodeGroup CodeGroup { get; set; }
    string ShortDescription { get; set; }
    string LongDescription { get; set; }
}

What should I do in my view and model?

2条回答
淡お忘
2楼-- · 2020-02-07 07:32

Try this:

@Html.DropDownListFor(model => model.Status, 
 Model.StatusList.Select(a=> 
  new SelectListItem(){
   Text=a.ShortDescription, Value=a.Id.ToString()
  }),
 "")
查看更多
我只想做你的唯一
3楼-- · 2020-02-07 07:36

Cybernate's solution works. You could also do:

@Html.DropDownListFor(model => model.Status, 
     new SelectList(Model.StatusList, "Id", "ShortDescription"))

Cybernate's version will do stronger type checking, but SelectList is more encapsulated.

查看更多
登录 后发表回答