我得到這個錯誤,我不知道如果我能做到這一點,這裏是我的代碼..MVC:詞典需要類型的模型項目「System.Collections.Generic.IEnumerable`1
應用控制器
public ActionResult AppView()
{
List<Application> apps;
using (ISiteDbContext context = _resolver.GetService<ISiteDbContext>())
{
apps = context.Applications.ToList();
}
return PartialView("AppView", apps.OrderBy(a => a.Name).ToList());
}
渲染部分 - 這是一個視圖,其是在家庭控制器內。
@{Html.RenderPartial("~/Views/Application/AppView.cshtml", new Example.Services.DAL.Application());}
和我的應用程序視圖
@model IEnumerable<Example.Services.DAL.Application>
@{
ViewBag.Title = "Applications";
}
<h2>Applications</h2>
<p>
@Html.ActionLink("Add New Application", "Create")
</p>
<table>
<tr>
<th>
@Html.DisplayNameFor(model => model.Name)
</th>
<th></th>
</tr>
@foreach (var item in Model)
{
<tr>
<td>
@Html.DisplayFor(modelItem => item.Name)
</td>
<td>
@Html.ActionLink("Edit", "Edit", new { id = item.ID }) |
@Html.ActionLink("Details", "Details", new { id = item.ID }) |
@Html.ActionLink("Delete", "Delete", new { id = item.ID })
</td>
</tr>
}
</table>
完整的錯誤信息:
傳遞到字典的模型產品的類型 'Example.Services.DAL.Application',但本字典需要 型號項目 'System.Collections.Generic.IEnumerable`1 [Example.Services.DAL.Application]'。
請在你的問題的身體*全*錯誤消息。完整的錯誤信息不會以「but」開頭,但會加入 – 2014-12-09 11:51:58
完整的錯誤信息。 – 2014-12-09 11:54:38