0

我正在使用枚举来填充我的 DropDownList,它可以与 List 和 Create 视图一起正常工作,但我的 Edit 视图会在 DropDownList 中加载重复值。重复的值只是属性含义的选定值,如果 Rented 是保存在 DB 中的值,则 DropDownList 将显示已选择的已租用、可用的和列表中的另一个已租用。我需要知道的是如何加载一个 DropDownList 来选择先前存储在数据库中的 PropertyStatus 枚举值而没有任何重复?

控制器:

        public ActionResult Edit(int id)
    {
        Property property = db.Properties.Find(id);

        ViewBag.PropertyStatus = SetViewBagPropertyStatus();
        return View(property);
    }

    private IEnumerable<SelectListItem> SetViewBagPropertyStatus()
    {
        IEnumerable<ePropStatus> values = 
            Enum.GetValues(typeof(ePropStatus)).Cast<ePropStatus>();

            IEnumerable<SelectListItem> items =
             from value in values
             select new SelectListItem
             {
                 Text = value.ToString(),
                 Value = value.ToString()
             };
            return items; 
    }

模型:

    public enum ePropStatus
    {
        Available ,
        Rented
    }

    public partial class Property
    {
         public int PropertyId { get; set; }
         public string PropName { get; set; }
         public string Address { get; set; }
         public string City { get; set; }
         public string State { get; set; }
         public string ZipCode { get; set; }
         public int SqFeet { get; set; }
         public int Bedrooms { get; set; }
         public int Bathrooms { get; set; }
         public int Garage { get; set; }
         public string Notes { get; set; }
         public ePropStatus PropertyStatus { get; set; }
    }

编辑视图:

@Html.DropDownList("PropertyStatus", Model.PropertyStatus.ToString())
4

1 回答 1

0

试试这个:

@Html.DropDownListFor(model => model.PropertyStatus, ViewBag.PropertyStatus)

编辑 :::或者试试这个

控制器:

public ActionResult Edit(int id)
{
    Property property = db.Properties.Find(id);

    ViewBag.PropertyStatusList = SetViewBagPropertyStatus(property.PropertyStatus);
    return View(property);
}

private IEnumerable<SelectListItem> SetViewBagPropertyStatus(string selectedValue = "")
{
    IEnumerable<ePropStatus> values = 
        Enum.GetValues(typeof(ePropStatus)).Cast<ePropStatus>();

        IEnumerable<SelectListItem> items =
         from value in values
         select new SelectListItem
         {
             Text = value.ToString(),
             Value = value.ToString(),
             Selected = (selectedValue == value.ToString())
         };
        return items; 
}

看法:

@Html.DropDownList("PropertyStatus", ViewBag.PropertyStatusList)
于 2012-11-11T06:34:22.903 回答