Created
March 11, 2020 16:53
-
-
Save ismailmayat/20bd042efaa9dd03357fe695c71bb990 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
double totalDocuments = _collection.CountDocuments(predicate); | |
total = totalDocuments; | |
var pagedIems = _collection.Find(predicate).Skip(pageNo*pageSize).Limit(pageSize).ToList(); | |
return pagedIems; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment