我有一个 tolist模型及其按日期排序,然后我在视图模型中有一个foreach 我想知道如何获得像这样的craigslist显示日期时效果,..如果你看下面的foreach它被分组为
的 1。日期,个人资料,州
2.日期,个人资料,州
等。
如何将其转换为
日期
1.简介,州
2.个人资料,州
因为所有内容都是由createDate订购的,所以我希望显示日期,如4-21-2013和 然后在那个日期之前创建的所有列表..然后在2013年4月20日和同样的事情。我不知道是否可以在foreach中完成任何帮助都会很棒!!
// the controller model
var mypages = (from s in db.jobs.OrderBy(c => c.createDate) select s).ToList();
// the view model
@foreach (var item in Model)
{
@item.createDate ,
@Html.ActionLink("View profile", "detail", "profile", new { id = item.profile}),
@item.state
}