I need to order the articles stored in a database by descending publication date and then take the first 20 records after the article with Id == 100.
Id == 100
T
Isnt the solution to just add a where statement?
IQueryable articles = db.Articles.Where(a => a.id != 100).OrderByDescending(a => a.PublicationDate).Take(20);