Skip to main content
Journey Uncommon Logo
JourneyUncommon
mediumC#IEnumerable vs IQueryableSingle-choice MCQ

An EF Core IQueryable is paged with the chain below. What does the provider do, and what is the gotcha?

var page = db.Orders .Skip(20) .Take(10) .ToList();