C# を使用して IBM Cloudant に接続しています。IBM Cloudantは JSON クエリをサポートしています。このメソッドを使用して次のクエリなどのクエリを作成する方法を知っている人はいますか?
{
"selector": {
"_id": {
"$gt": null
}
}
}
C# を使用して IBM Cloudant に接続しています。IBM Cloudantは JSON クエリをサポートしています。このメソッドを使用して次のクエリなどのクエリを作成する方法を知っている人はいますか?
{
"selector": {
"_id": {
"$gt": null
}
}
}
そのため、最終的にクエリの応答を取得できました。次のとおりです。
var jsonString = "{\"selector\": {\"_id\": {\"$gt\": null}},\"fields\": [\"" + Attribute + "\"],\"sort\": [{\"_id\": \"asc\"}]}";
var content = new StringContent(jsonString, Encoding.UTF8, "application/json");
HttpResponseMessage res = await Client.PostAsync(string.Format("https://{0}.cloudant.com/{1}/_find", User, Database), content);
StreamReader streamReader = new StreamReader(await res.Content.ReadAsStreamAsync());
JObject responseContent = (JObject)JToken.ReadFrom(new JsonTextReader(streamReader));
streamReader.Close();
var Elements =responseContent["docs"].Value<JArray>();