我的模特:
IEquatable<T>
我的观点:
public class MyViewModel
{
public bool IsSelected { get; set; }
public string Name { get; set; }
...
}
如果可能的话,我需要使用Html.ActionLink()将所有选定的项目传递给MyAction。
@model IEnumarable<MyViewModel>
...
<table>
foreach(var item in Model)
{
<tr>
<td>@Html.CheckBoxFor(x => item.IsSelected)</td>
<td>@Html.DisplayFor(x => item.Name)</td>
...
</tr>
}
</table>