这是我的控制器,它返回我的对象列表:
public ActionResult ShowList(string site)
{
var list = db.Objects.Where(x => x.protocol == site).ToArray();
ViewBag.Files = list;
return View();
}
索引.cshtml:
@model IQueryable<AutomationCapturesMVC.Models.Capture>
@{
ViewBag.Title = "ShowList";
}
<table>
@foreach (var item in Model)
{
<tr>
<td>@item.fileName</td>
<td>@item.browser</td>
</tr>
}
</table>
目前得到一个NullReferenceException
我已经检查过并且返回列表不为空