Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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>.Include(x => x.Books).Skip(5).Take(10).ToListAsync();

The problem is, that when I'm trying to perform Skip and Take methods on this query, it returns libraries without included list of books.

How can I work with Skip and Take, with saving previously included entities?

like image 399
Yurii N. Avatar asked Jun 07 '16 15:06

Yurii N.


1 Answers

Usually you need to Order By first before use Skip and Take methods. Try ordering by name like this way:

await dbContext.Set<Library>().Include(x => x.Books)
                              .OrderBy(x=>x.Name)
                              .Skip(5)
                              .Take(10)
                              .ToListAsync();

As far as I remember your query should be translated using OFFSET-FETCH filter which requires an ORDER BY clause to exist.

like image 127
octavioccl Avatar answered Oct 28 '22 18:10

octavioccl