我用这段代码抓取文章。
List<view_M04FrontpagesEntity> fList = new view_M04FrontpagesService().GetByCategoryId(0);
var article = new M02ArticlesService().GetById(fList.First<view_M04FrontpagesEntity>().M02ArticleId);
我想获取最新的文章article.UpdatedDate
如何用 linq 或其他方法最好地做到这一点?