如何存储和显示 SelectList 数据

How to store and display SelectList data

我正在使用 SelectList 在我的视图中填充下拉列表。它适用于创建和编辑视图,将 ID 值数据存储在 table 中。如何检索 'Name' 值以显示在详细信息视图中?

型号

Public Class Employee {
 [Key]
 public int ID { get; set;}
 public string UserName {get; set; }
 public byte Gender { get; set; }
}

ViewModel

public class EmployeeEditViewModel {
 public int ID { get; set; }
 public string UserName { get; set; }
 public SelectList GenderList { get; set; }

 public EmployeeEditViewModel () {
        GenderList = CommonHelper.GenderList(null);
    }
}

帮手

 public static SelectList GenderList(object selected)
    {
        return new SelectList(new[]
        {
            new { Value = 0, Name = "Male" },
            new { Value = 1, Name = "Female" }
            }
            , "Value", "Name", selected);
    }

编辑视图

@model Models.ViewModel.EmployeeEditViewModel
@using (Html.BeginForm()) {
@Html.HiddenFor(model => model.ID)
<div class="form-group">
    @Html.LabelFor(model => model.UserName, htmlAttributes: new { @class = "control-label col-md-2" })
    <div class="col-md-10">
        @Html.EditorFor(model => model.UserName, new { htmlAttributes = new { @class = "form-control" } })
        @Html.ValidationMessageFor(model => model.UserName, "", new { @class = "text-danger" })
    </div>
</div>
<div class="form-group">
    @Html.LabelFor(model => model.GenderList, htmlAttributes: new { @class = "control-label col-md-2" })
    <div class="col-md-10">
        @Html.DropDownListFor(model => model.Gender, Model.GenderList, "- Select -", new { htmlAttributes = new { @class = "form-control" } })
        @Html.ValidationMessageFor(model => model.GenderList, "", new { @class = "text-danger" })
    </div>
</div>
}

控制器

[HttpPost]
    public ActionResult CreateEmployee(EmployeeEditViewModel emProfile)
    {
        try
        {
            if (ModelState.IsValid)
            {
                Employee newUser = new Employee();
                newUser.UserName = emProfile.UserName;
                newUser.Gender = emProfile.Gender;

                userRepository.Add(newUser);
                userRepository.SaveChanges();
                return RedirectToAction("Index");
            }
        }
        catch (Exception ex)
        { }            
        return View(emProfile);
    }

到目前为止效果很好,我能够创建、编辑员工记录,并且 1 或 0 存储在 table 中作为性别。 但是当我想在详细信息视图中显示员工数据时,如何获取文本 'Male' 或 'Female'?

我最终创建了一个辅助方法来检索文本。

public static string GetTextFromSelectList(int id, string listName)
    {
        string selectedText = string.Empty;
        SelectListItem selectedItem;

        switch (listName)
        {
            case "Gender":
                selectedItem = Helper.CommonHelper.GenderList(null).FirstOrDefault(x => x.Value == id.ToString());
                selectedText = selectedItem == null ? null : selectedItem.Text;
                break;                
            default:
                selectedText = null;
                break;
        }
        return selectedText;
    }