we have an index and we use it to show documents which we retreive on a paged basis. i.e the query will be
{
.From((page - 1) * pageSize)
.Size(25)
.Sort(sort => //etc
}
How can we figure out if we have document id, which page it falls on (Efficiently)?