I have a Datagrid.Backend i am using MongoDB.I heard that MongoDB supports Pagination ie we did not retrive all data.We have to set itemsPerPage.Then client send pagenumber as input.Depending on input no o records are retrieved.So that for large volume of data system do not crash.I found one query from this forums.
DataGrid Pagination using Mongo dB?
query is
db.your_collection.find().skip(20).limit(10)
When i wrote above query limit(10) is not coming while type in visualstudio(intelligence is not coming)
Can any one help on this?