ورود

View Full Version : Server Error in '/' Application



baidin
یک شنبه 27 فروردین 1396, 22:33 عصر
سلام
من توی کد این خطا را دارم. کدهای مربوطه را هم میگذارم
تشکر
Server Error in '/' Application.The model item passed into the dictionary is of type 'System.Collections.Generic.List`1[MyCmsMVC5.Models.PageGroup]', but this dictionary requires a model item of type 'System.Collections.Generic.IEnumerable`1[MyCmsMVC5.Models.Page]'.



کنترلر:
public ActionResult ShowNewsByGroup(int id)
{
return View(db.PageGroups.Where(p => p.GroupID == id).ToList());
}

ویو:
@model IEnumerable<MyCmsMVC5.Models.Page>






@{
ViewBag.Title = "ShowNewsByGroup";
}

OmMiD_MtWo
دوشنبه 28 فروردین 1396, 08:37 صبح
سلام
نوع ارسالی از کنترلر و دریافتی از ویو یکسان نیست. کد ویو رو به صورت زیر تغییر بدید:
@model List<MyCmsMVC5.Models.Page>