我有一个与另一个有关系的模型类,如下所示:
public class Client
{
public int ID { get; set; }
[StringLength(30, ErrorMessage = "Client name cannot be longer than 30 characters.")]
public string Name { get; set; }
public virtual Industry Industry { get; set; }
[Display(Name="Head Office")]
public string HeadOffice { get; set; }
}
public class Industry
{
public int ID { get; set; }
[StringLength(30, ErrorMessage = "Industry name cannot be longer than 30 characters.")]
[Display(Name="Industry")]
public string Name { get; set; }
}
最终目标是在客户端 CRUD 视图上,我还可以选择 Industry.Name,或者在编辑/创建时分配它。
我已经设法在控制器中使用以下内容选择下拉列表数据:
private void PopulateIndustriesDropDownList(object selectedIndustry = null)
{
var industriesQuery = from i in _context.Industry
orderby i.Name
select i.Name;
ViewBag.Industries = new SelectList(industriesQuery, "Industry", "Name", selectedIndustry);
}
我的每个控制器功能中都有以下内容:
// GET: Clients/Create
public IActionResult Create()
{
PopulateIndustriesDropDownList();
return View();
}
// POST: Clients/Create
[HttpPost]
[ValidateAntiForgeryToken]
public IActionResult Create(Client client)
{
if (ModelState.IsValid)
{
_context.Client.Add(client);
_context.SaveChanges();
return RedirectToAction("Index");
}
PopulateIndustriesDropDownList();
return View(client);
}
一切似乎都正常,但我无法弄清楚如何在我看来绑定它。这是我第一次使用 Tag Helpers,我确信我的语法不正确。
<div class="form-group">
<label asp-for="Industry.Name" class="col-md-2 control-label"></label>
<div class="col-md-10">
<select asp-for="Industry.ID" asp-items="ViewBag.Industries" class="form-control"></select>
</div>
</div>
调用 Edit 函数时,我没有收到错误消息,但下拉列表中没有填充任何内容。
谁能指出我哪里出错了?