我想在我的网页中包含我的对象(从数据库中读取)的下拉列表。
这是我的对象:
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";
}
不知道如何从这里继续。