在以下法典中,我正在从Reshaper那里获得这一警告。 我想知道,我是否必须改变法典中的内容,或只是躲避这种警告。
警告见每个显示器。
@foreach (var item in Model) {
<tr>
<td>
@Html.DisplayFor(modelItem => item.Name)
</td>
<td>
@Html.DisplayFor(modelItem => item.Telephone)
</td>
<td>
@Html.DisplayFor(modelItem => item.Skypeuser)
</td>
<td>
@Html.ActionLink("Edit", "Edit", new { id=item.ApplicantID }) |
@Html.ActionLink("Details", "Details", new { id=item.ApplicantID }) |
@Html.ActionLink("Delete", "Delete", new { id=item.ApplicantID })
</td>
</tr>
}