Is there syntax to create a condition in the 'foreach' loop used in the view page?
@foreach (var item in Model.Where(item.Status != "C") {
<tr>
<td>
@Html.DisplayFor(modelItem => item.TableName)
</td>
.
.
.
The syntax for this foreach is incorrect, does anyone have an idea what it should be? (The rest of the table is truncated)