0

我有 DropDownList 从我的数据库中读取文件并在我的 DropDownList 中显示这些文件。

当前解决方案显示在我的 DropDownListItem System.Web.Mvc.SelectList 而不是我的 Object 属性上。我想在我的网页中包含我的对象(从数据库中读取)的下拉列表。

这是我的对象:

public class MyObject
{
    public int id { get; set; }
    public string fileName { get; set; }

    public string browser { get; set; }

    public string protocol { get; set; }

    public string family { get; set; }
}

我的控制器:

public ActionResult Index()
{
    List<MyObject> list = db.MyObjects.Where(x => x.family == "Web").ToList();
    ViewBag.Files = lList;
    return View();
}

索引.cshtml

  @Html.DropDownList("File",new SelectList(ViewBag.Files))

我想在 DropDownList 中看到的是我的protocol 财产。

4

2 回答 2

0

尝试这个

public ActionResult Index()
{
    List<MyObject> list = db.MyObjects.Where(x => x.family == "Web").DistinctBy(x=> x.protocol).ToList();
    ViewBag.Files = new SelectList(list,"Id","protocol");
    return View();
}
于 2013-11-10T09:41:49.860 回答
0

试试这样:

@Html.DropDownList("File", new SelectList(ViewBag.Files, "id", "fileName"))
于 2013-11-10T09:43:15.233 回答