You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To retrieve multiple entries of a particular content type, use the code snippet given below:
43
-
75
+
```cs
76
+
77
+
Queryquery=client.ContentType("blog").Query();
78
+
query.Where("title", "welcome");
79
+
query.IncludeSchema();
80
+
query.IncludeCount();
81
+
query.ToJSON();
82
+
query.Find<Product>().ContinueWith((t) => {
83
+
if (!t.IsFaulted) {
84
+
ContentstackCollection<Product>result=t.Result;
85
+
Console.WriteLine("result"+result.items);
86
+
}
87
+
});
88
+
```
44
89
## Example
45
90
46
91
To help you get started, we have created a sample console application that is powered by Contentstack .NET SDK. Click on the link below to read the tutorial of the app.
To retrieve multiple entries of a particular content type, use the code snippet given below:
43
-
76
+
```cs
77
+
78
+
Queryquery=client.ContentType("blog").Query();
79
+
query.Where("title", "welcome");
80
+
query.IncludeSchema();
81
+
query.IncludeCount();
82
+
query.ToJSON();
83
+
query.Find<Product>().ContinueWith((t) => {
84
+
if (!t.IsFaulted) {
85
+
ContentstackCollection<Product>result=t.Result;
86
+
Console.WriteLine("result"+result.items);
87
+
}
88
+
});
89
+
```
44
90
## Example
45
91
46
92
To help you get started, we have created a sample console application that is powered by Contentstack .NET SDK. Click on the link below to read the tutorial of the app.
0 commit comments