public class DropDown
{
public string[] SelectedItems { get; set; }
public IEnumerable<SelectListItem> Items { get; set; }
}
我试图从具有上述结构的 DB 中获取 MVC 中的 DropDown。
从数据库中,我得到了文本和值字段,并且在IEnumerable<T>
其中 T 有 2 个属性 id 和文本。
将 ienumerable id 转换为字符串数组并将 id、text 分配给的最佳方法是什么SelectedListItem
?
我想过循环遍历 ienumerable 并形成 DropDown,但认为会有更好的方法。
更新
例如 :
In DB i have student table with
ID,
Name,
Class,
Section
我得到了 id 和 Name ienumerable<student>
。从那里我需要转换成DropDown