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ステートメントで行う方法はありますか?