我有下面的模型说 F:
public partial class F
{
[Key, Display(Name = "Id")]
public int FId { get; set; }
public int RId { get; set; }
public int FTId { get; set; }
public string C { get; set; }
public string U { get; set; }
public string D { get; set; }
[ScaffoldColumn(false)]
public System.DateTimeOffset Created { get; set; }
}
在控制器中,我必须从数据库中读取“F”的所有记录,并将它们分配给可枚举的记录列表。
例如:
ViewBag.Cs = enumerable C column items (textbox)
ViewBag.Us= enumerable U column items (textbox)
ViewBag.FTIDs = enumerable FTId column items (this has to be a dropdown)
在我的我必须展示
@Html.Textbox(Cs);
@Html.Dropdown(FTIDs);
我只给出了文本框和下拉列表作为示例,可能还有许多其他控件,如日期时间、复选框等,我应该能够将每一列写为 viewbag 中的列表 a 并在 MVC 视图中显示。
有人可以建议这是否可以实现以及如何实现?
非常感谢...