var lastArticles = from a in be.MyTable
where a.id == 1
join c in be.OtherTable on a.parent equals c.id
orderby a.timestamp descending
select new { a, cName = c.name};
我需要获得前 5 个元素。
我正在这样做
.Take(5)
但是有没有办法在 linq 语句中做呢?