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";
}
ここからどのように続けるかわかりません。