大家好,我检查了我的控制器并查看它似乎没有问题,但我收到系统收集错误。
这是我的控制器
public ViewResult Index()
{
return View(db.banner.ToList());
}
这是我的看法
{
@model IEnumerable<icerik.Models.banner>
}
我得到这个错误
The model item passed into the dictionary is of type 'System.Collections.Generic.List`1[icerik.Models.banner]', but this dictionary requires a model item of type 'System.Collections.Generic.IEnumerable`1[icerik.Models.contents]'.