我有一个JSON对象(NewtonSoft.JObject)。它包含以下格式的几个条目:
{
"id": "b65ngx59-2c67-4f5b-9705-8525d65e1b8",
"name": "TestSample",
"versions": []
},
{
"id": "8acd8343-617f-4354-9b29-87a251d2f3e7",
"name": "template 2",
"versions": [
{
"id": "556ng956-57e1-47d8-9801-9789d47th5a5",
"template_id": "8acd8343-617f-4354-9b29-87a251d2f3e7",
"active": 1,
"name": "1.0",
"subject": "<%subject%>",
"updated_at": "2015-07-24 08:32:58"
}
]
}
注意:只是一个例子。
我编写了一个代码,以便在列表中获取ID:
List<JToken> templateIdList = jObj.Descendants()
.Where(t => t.Type == JTokenType.Property && ((JProperty)t).Name == "id")
.Select(p => ((JProperty)p).Value)
.ToList();
注意:jObj是JSON对象
输出列表是:
[0] - b65ngx59-2c67-4f5b-9705-8525d65e1b8
[1] - 8acd8343-617f-4354-9b29-87a251d2f3e7
[2] - 556ng956-57e1-47d8-9801-9789d47th5a5
它提供了所有ID。现在我想为linq添加一个条件,以便只填充 template_ids ,其中包含值为1的活动清单。
所需的输出:
[0] - 8acd8343-617f-4354-9b29-87a251d2f3e7
我应该对linq查询进行哪些更改才能获得此信息?
编辑:完整的代码是
public bool CheckIfTemplateExists(string template)
{
bool exists = false;
//web service call to retrieve jsonTemplates
JObject jObj = JObject.Parse(jsonTemplates);
List<JToken> templateIdList = jObj.Descendants()
.Where(t => t.Type == JTokenType.Property && ((JProperty)t).Name == "id")
.Select(p => ((JProperty)p).Value)
.ToList();
if(templateIdList.IndexOf(template) != -1)
{
exists = true;
}
return exists
}
上面代码中的jsonTemplates是一个格式为字符串的字符串:
{"templates":
[{"id":"b65cae59-2c67-4f5b-9705-07465d65e1b8",
"name":"TestSample","versions":[]},
{"id":"8edb8343-617f-4354-9b29-87a251d2f3e7",
"name":"Template1",
"versions":[{"id":"556bb956-57e1-47d8-9801-9388d47cc5a5",
"template_id":"8edb8343-617f-4354-9b29-87a251d2f3e7",
"active":1,
"name":"1.0","subject":"\u003c%subject%\u003e",
"updated_at":"2015-07-24 08:32:58"}]}
答案 0 :(得分:5)
试试这个:
List<JToken> templateIdList = jObj["templates"].Children()
.Where(child => child["versions"] != null
&& child["versions"].Any(version => version["active"].Value<int>() == 1))
.Select(x => x["id"]);