我需要在我的控制器中保存用户的内联版本的操作结果。我使用http://haacked.com/archive/2008/10/23/model-binding-to-a-list.aspx的源成功地从 edmx 创建了列表,但是当我保存时我不知道该怎么做与行动结果。
查看我的 cstml:
@model List<SCP___AgroGerente.Models.VeiculoFazendaUsuario>
@{
ViewBag.Title = "Index";
}
<div class="Cabecalho">
<div class="left">
<h2>Lista de Veículos</h2>
<h4>Aqui você cadastra as Veículos</h4>
</div>
<div class="right" style="padding-top: 28px">
@Html.ActionLink(" ", "Create", string.Empty, new { @class = "icone new" })
</div>
<div class="clear"></div>
<hr />
</div>
<table class="tabelaFormatada">
<tr>
<th>Especificação
</th>
</tr>
@using (Html.BeginForm())
{
for (int i = 0; i < Model.Count(); i++)
{
<tr>
<td>
@Html.EditorFor(m => Model[i].VeiculoEspecificacao);
</td>
</tr>
}
<p>
<input type="submit" value="Salvar Alterações" />
</p> }
</table>