Example #1
0
 /// <summary>
 /// Bypasses a specified number of documents in resultset and retun the remaining documents (same as Skip)
 /// </summary>
 public ILiteQueryableAsyncResult <T> Offset(int offset)
 {
     _wrappedQuery.Offset(offset);
     return(this);
 }