Это ошибка. Я пытаюсь получить данные из БД, используя MVC контроллер, возвращающийся к представлению.
Ошибка Оператор foreach CS1579 не может работать с переменными типа 'SubscriberEventMapping', поскольку SubscriberEventMapping не содержит publi c определение экземпляра для GetEnumerator
@model WebApplicationLPISubscriber.Models.SubscriberEventMapping
@using WebApplicationLPISubscriber.Models;
@using (Html.BeginForm())
{
@Html.AntiForgeryToken()
<table class="table">
<tr>
<th>
@Html.DisplayNameFor(model => model.SubscriberID)
</th>
<th>
@Html.DisplayNameFor(model => model.SubscriberID)
</th>
<th>
@Html.DisplayNameFor(model => model.EventTypeName)
</th>
<th>
@Html.DisplayNameFor(model => model.Year)
</th>
<th>
@Html.DisplayNameFor(model => model.CalendarStartDate)
</th>
<th>
@Html.DisplayNameFor(model => model.CalendarEndDate)
</th>
</tr>
</table>
foreach (var item in Model)
{
<tr>
<td>
@Html.DisplayFor(modelItem => item.SubscriberID)
</td>
<td>
@Html.DisplayFor(modelItem => item.EventTypeName)
</td>
<td>
@Html.DisplayFor(modelItem => item.Year)
</td>
<td>
@Html.DisplayFor(modelItem => item.CalendarStartDate)
</td>
<td>
@Html.DisplayFor(modelItem => item.CalendarEndDate)
</td>
</tr>
}