こんにちは、コントローラーをチェックしたところ、問題はないように見えますが、System Collection エラーが発生します。
これが私のコントローラーです
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]'.