0

Web ページ全体に (データベースから読み取った) オブジェクトのドロップダウン リストを含めたいと考えています。

これは私の目的です:

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

@model IEnumerable<MyApplication.Models.MyObject>
@{
    ViewBag.Title = "Index";    
}

ここからどのように続けるかわかりません。

4

1 に答える 1

1

これを試して

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

ビューに追加

  @Html.DropDownList("File",new SelectList(ViewBag.Files))
于 2013-11-09T18:34:16.943 に答える