Skip and Take in Entity Framework Core
问题 I have simple POCO classes: public class Library { [Key] public string LibraryId { get; set; } public string Name { get; set; } public List<Book> Books { get; set; } } public class Book { [Key] public string BookId { get; set; } public string Name { get; set; } public string Text { get; set; } } And I have query, that returns libraries with already included books: dbContext.Set<Library>.Include(x => x.Books); I'm trying to skip 5 libraries and then take 10 of them: await dbContext.Set<Library