Skip to content

Commit bfa23c7

Browse files
committed
Read me upate
1 parent 97c2dae commit bfa23c7

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -88,13 +88,13 @@ These were example of some of the basic queries of the SDK. For advanced queries
8888
### Paginating Responses
8989
In a single instance, the [Get Multiple Entries](https://www.contentstack.com/docs/developers/dot-net/get-started-with-dot-net-sdk/#get-multiple-entries) query will retrieve only the first 100 items of the specified content type. You can paginate and retrieve the rest of the items in batches using the [skip](https://www.contentstack.com/docs/platforms/dot-net/api-reference/api/Contentstack.Core.Models.Query.html#Contentstack_Core_Models_Query_Skip_System_Int32_) and [limit](https://www.contentstack.com/docs/platforms/dot-net/api-reference/api/Contentstack.Core.Models.Query.html#Contentstack_Core_Models_Query_Limit_System_Int32_) parameters in subsequent requests.
9090

91-
```
92-
Query query = client.ContentType("blog").Query();
91+
``` cs
92+
Query query = client.ContentType("product").Query();
9393
query.Skip(20);
9494
query.Limit(20);
95-
query.Find<Blog>().ContinueWith((t) => {
95+
query.Find<Product>().ContinueWith((t) => {
9696
if (!t.IsFaulted) {
97-
ContentstackCollection<Blog> result = t.Result;
97+
ContentstackCollection<Product> result = t.Result;
9898
Console.WriteLine("result" + result);
9999
}
100100
});

0 commit comments

Comments
 (0)