您好我正在尝试使用以下方法从我的数据库中创建一个列表,然后在我的视图中访问它们。这是我一直在尝试的……</p>
var rTypeList = from r in db.Rubrics where r.DepartmentID == 2 select r;
var selectedRubrics = typeList.Select(r => r.Category);
IList <String> rubricsList = selectedRubrics.ToList();
IList<SelectListItem> iliSLI = new List<SelectListItem>();
SelectListItem selectedrubrics = new SelectListItem();
selectedrubrics.Text = "Choose An Option";
selectedrubrics.Value = "1";
selectedrubrics.Selected = true;
iliSLI.Add(selectedrubrics);
ViewData["Options"] = iliSLI;
然后在我看来,我有: @Html.DropDownList("Options")
这让我的列表开始了,但我怎样才能从这个列表中获取值 IList <String> rubricsList = selectedRubrics.ToList();
……并将它们添加到我的下拉列表中?