我目前正在尝试在 asp.net 5 中使用 taghelper。我想使用带有 ViewBag 列表的 select tag helper。我放入 asp-for 字段的任何内容都会给我一个错误,因为它试图从 IEnumerable 而不是视图包的模型中提取它。
我想替换这个:
@model IEnumerable<InvoiceIT.Models.Invoice>
@using (Html.BeginForm())
{
<p>
@Html.DropDownList("Companies", String.Empty)
<input type="submit" value="Filter" class="btn btn-default" />
</p>
}
有了这个:
@model IEnumerable<InvoiceIT.Models.Invoice>
<form asp-controller="Invoice" asp-action="Index" method="post" class="form-horizontal" role="form">
<select asp-for="????" asp-items="ViewBag.Companies" class="form-control">
</select>
<input type="submit" value="Save" class="btn btn-default" />
</form>
这是我在控制器中填充选择列表的方式:
ViewBag.Companies = new SelectList(await DbContext.Company.ToListAsync(), "CompanyID", "Name");