For efficient asynchronous paging, the ________ and ________ methods can be applied to a DbSet.

  • .First() and .Last()
  • .OrderBy() and .ThenBy()
  • .Skip() and .Take()
  • .ToList() and .Count()
The correct answer is .Skip() and .Take(). These methods help in implementing efficient paging by skipping a specified number of elements and taking a specified number of elements from the query results.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *