ASP.NET MVC 表单提交多层子级实体集合数据到控制器中
2021-01-15 01:12
标签:rtu 合数 span group tde set get list htm 导航属性 类型设置为ICollection 时 public virtual ICollection 后台将取不到 导航属性类型应设为IList ASP.NET MVC 表单提交多层子级实体集合数据到控制器中 标签:rtu 合数 span group tde set get list htm 原文地址:https://www.cnblogs.com/cxxtreasure/p/13401577.html @for (var i = 0; i Model.DepartmentDetails.Count(); i++)
{
div class="form-group">
@Html.HiddenFor(model => model.DepartmentDetails[i].Id)
@Html.HiddenFor(model => model.DepartmentDetails[i].DepartmentId)
@Html.LabelFor(model => model.DepartmentDetails[i].Population, htmlAttributes: new { @class = "control-label col-xs-2" })
div class="col-xs-4">
@Html.EditorFor(model => model.DepartmentDetails[i].Population, new { htmlAttributes = new { @class = "form-control" } })
div>
@Html.LabelFor(model => model.DepartmentDetails[i].BuildingsCount, htmlAttributes: new { @class = "control-label col-xs-2" })
div class="col-xs-4">
@Html.EditorFor(model => model.DepartmentDetails[i].BuildingsCount, new { htmlAttributes = new { @class = "form-control" } })
div>
div>
上一篇:Web框架原理
文章标题:ASP.NET MVC 表单提交多层子级实体集合数据到控制器中
文章链接:http://soscw.com/index.php/essay/42026.html