该模型是 RatingSource 的 IEnumerable
public class RatingSource
{
public int Id { get; set; }
public string Source { get; set; }
public bool IsActive { get; set; }
}
查看代码:
@foreach (var ratingSource in Model)
{
<tr>
<td>
@Html.DisplayFor(modelItem => ratingSource.Source)
</td>
<td>
@Html.RadioButton("Active",ratingSource.Id,ratingSource.IsActive)
</td>
</tr>
}
我不为 IsActive 使用 EditorForModel,因为它提供了复选框。如何将编辑的数据保存到数据库?我使用实体框架。