Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Find out which page an item is on

I am using LINQ with entity framework in my application. I have repository method to get a page of data like this:

public IEnumerable<Sample> GetPageData(int orderId, int page, int itemsPerPage)
{
    var samples = _context.Set<Sample>()
                          .Where(s => s.OrderId == orderId)
                          .OrderBy(s => s.Id)
                          .Skip(itemsPerPage * page)
                          .Take(itemsPerPage);

    return samples;
}

I would like to have another repository method so that I can retrieve the page on which a sample is. The method signature would be something like:

public int GetPage(int orderId, int sampleId, int itemsPerPage)
{
    // ???
}

I am struggling to find a way to do it in LINQ. The only idea I have for now is to fetch the pages one after one until I find the needed sample. I know it is not efficient but the requirement is that there are no more than 500 samples and the page size is 25.

How I could do this more efficiently?

like image 269
Merwan Avatar asked Nov 12 '13 14:11

Merwan


2 Answers

public int GetPage(int orderId, int sampleId, int itemsPerPage)
{
    //protect against divide by zero
   if(itemsPerPage < 1)
      return 1;//or 0 if you want page index

  int index = _context.Set<Sample>()
                       .Where(s => s.OrderId == orderId && s.Id < sampleId)
                       //.OrderBy(s => s.Id) edited after accepted OrderBy not necessary
                       .Count();

   //if index is zero return 1
   //if index == 9 and itemsPerPage == 10 return 1 
   //if index == 10 and itemsPerPage == 10 return 2
   //if you want the page index rather than the page number don't add 1
   return 1 + (index / itemsPerPage);
}

@Rob Lyndon's effort made me think some more, and I came up with this as a way of checking that the page actually contains the sample - in one query to the database

public int GetPage(int orderId, int sampleId, int itemsPerPage)
{
    //protect against divide by zero
   if(itemsPerPage < 1)
      return 1;//or 0 if you want page index, or -1 if you want to flag this as invalid

   var result = context.Set<Sample>()
                .Where(s => s.OrderId == orderId 
                            && s.Id <= sampleId)//this time include sampleId
                //.OrderBy(s => s.ID)  edited after accepted OrderBy not necessary
                .GroupBy(x => true)
                .Select(group => new
                {
                    MaxID = group.Max(s => s.Id),
                    Count = group.Count()
                })
                .Single();

  //Check the sample is actually in the result
  if(result.MaxID != sampleId)
      return 1;//or 0 if you want page index, or -1 if you want to flag this as invalid

  int index = result.Count - 1;

   //if you want the page index rather than the page number don't add 1
   return 1 + (index / itemsPerPage);
}
like image 77
Colin Avatar answered Oct 26 '22 23:10

Colin


public int GetPage(int sampleId, int itemsPerPage)
{
    return _context.Set<Sample>()
                   .Count(s => s.Id <= sampleId) / itemsPerPage;
}
like image 44
Reda Avatar answered Oct 26 '22 23:10

Reda