我使用以下代码获取下拉列表的 LOV 并设置选定值:
ViewData["dropDown_Color"] = correspondingDropDownValue
.Select(j =>
new SelectListItem {
Text = j.ListOfValue,
Value = j.ListOfValue,
Selected = j.ListOfValue
== x.DefaultValue
})
.ToList();
现在我的 中有一个下拉列表ViewData
,我想根据以下查询更新此ViewData["dropDown_Color"]
基础的选定值
var userPref = from m in db.UserColorPref
where m.UserID.Equals(userSessionID)
select m;
要更新的值可以通过 访问userPref.color
。我可以知道如何实现我的目标吗?