當前我有這個AcceptedProposals
視圖,這是爲了顯示來自實體框架的提議列表的詳細信息。下面的代碼我有我的控制器:在Telerik MVC Grid中顯示實體框架模型
public ActionResult AcceptedProposals()
{
var proposals = db.Proposals.Where(p => p.CollegeFundDecision == true);
return View(proposals);
}
在我看來,我有以下行,但它給我這個錯誤:
System.InvalidOperationException: The model item passed into the dictionary is of type 'System.Data.Objects.ObjectQuery`1[URGLibrary.Proposal]', but this dictionary requires a model item of type 'URGLibrary.Proposal'.
@(Html.Telerik().Grid<Proposal>((IEnumerable<Proposal>)Model))
任何想法,我怎麼就能夠這個網格顯示正確嗎?此外,一旦我得到這個工作,如果我想讓它有多年的下拉選擇我正在查看的提案的年份,我會把這個網格代碼放到一個局部視圖中嗎?
感謝您的幫助!
我只是改變了它,仍然得到相同的錯誤。 – Chiggins