0
我是新的Asp.Net Mvc。我正在做一個示例應用程序博客。我試圖創建局部視圖對於檔案進行分類郵政根據日期。在asp.net中使用動態模型創建視圖mvc
Month/Year(count)
Post 1
Post 2
Month/Year(count)
Post 1
Post 2
在控制器
[ChildActionOnly]
public ActionResult Archives()
{
var post = from p in db.Posts
group p by new { Month =p.Date.Month, Year = p.Date.Year } into d
select new { Month = d.Key.Month , Year = d.Key.Year , count = d.Key.Count(), PostList = d};
return PartialView(post);
}
請幫我寫查看該行動與此月,年,計數和郵政的集合。
@downvote是我的問題錯了? – arun