循环通过 JObject c#

Nav*_*aig 0 c# json json.net

我正在使用 JSON.NET 来解析我的 JSON:

JObject jsonObject = JObject.Parse(myJson);
Run Code Online (Sandbox Code Playgroud)

我的 JSON 看起来像这样:

{
  "_links": {
    "self": {
      "href": "https://api-uat.dwolla.com/accounts/069b759d-6267-42d6-b30b-5d03ddd25673/funding-sources",
      "type": "application/vnd.dwolla.v1.hal+json",
      "resource-type": "funding-source"
    }
  },
  "_embedded": {
    "funding-sources": [
      {
        "_links": {
          "self": {
            "href": "https://api-uat.dwolla.com/funding-sources/0b2f6a31-b909-4c7d-a9f8-6253e5f791d0",
            "type": "application/vnd.dwolla.v1.hal+json",
            "resource-type": "funding-source"
          },
          "account": {
            "href": "https://api-uat.dwolla.com/accounts/069b759d-6267-42d6-b30b-5d03ddd25673",
            "type": "application/vnd.dwolla.v1.hal+json",
            "resource-type": "account"
          },
          "balance": {
            "href": "https://api-uat.dwolla.com/funding-sources/0b2f6a31-b909-4c7d-a9f8-6253e5f791d0/balance",
            "type": "application/vnd.dwolla.v1.hal+json",
            "resource-type": "balance"
          }
        },
        "id": "0b2f6a31-b909-4c7d-a9f8-6253e5f791d0",
        "status": "verified",
        "type": "bank",
        "name": "Bank Of America",
        "created": "2017-03-22T12:54:51.000Z",
        "removed": false,
        "channels": [
          "ach"
        ],
        "bankName": "SANDBOX TEST BANK"
      },
      {
        "_links": {
          "self": {
            "href": "https://api-uat.dwolla.com/funding-sources/2235c3f5-03d6-4b7c-8ffb-c389c94375eb",
            "type": "application/vnd.dwolla.v1.hal+json",
            "resource-type": "funding-source"
          },
          "account": {
            "href": "https://api-uat.dwolla.com/accounts/069b759d-6267-42d6-b30b-5d03ddd25673",
            "type": "application/vnd.dwolla.v1.hal+json",
            "resource-type": "account"
          }
        },
        "id": "2235c3f5-03d6-4b7c-8ffb-c389c94375eb",
        "status": "verified",
        "type": "bank",
        "name": "Superhero Savings Bank",
        "created": "2017-03-17T06:39:28.000Z",
        "removed": true,
        "channels": [
          "ach"
        ],
        "bankName": "SANDBOX TEST BANK"
      }      
    ]
  }
}
Run Code Online (Sandbox Code Playgroud)

在这里,我可以有 N 个资金来源。我想要得到hrefself,其中除去false每一个资金来源。所以在上面的例子中我需要:

href:"https://api-uat.dwolla.com/funding-sources/0b2f6a31-b909-4c7d-a9f8-6253e5f791d0".

我试图通过循环来实现这一点JObject

foreach (var x in jsonObject)
{
    if(x.Key == "_embedded")
    {
        foreach (var fundingSources in x.Value["funding-sources"])
        {
            foreach (var y in fundingSources)
            {

            }
        }
    }
}
Run Code Online (Sandbox Code Playgroud)

不幸的是,我无法将资金来源放入数组中。

Bri*_*ers 5

像这样尝试:

JObject jsonObject = JObject.Parse(myJson);
foreach (JToken fundingSource in jsonObject.SelectToken("_embedded.funding-sources"))
{
    bool removed = (bool)fundingSource["removed"];
    if (!removed)
    {
        string href = (string)fundingSource.SelectToken("_links.self.href");
        Console.WriteLine(href);
    }
}
Run Code Online (Sandbox Code Playgroud)

小提琴:https : //dotnetfiddle.net/Jhw8w6

或者,您可以像这样使用 LINQ:

JObject jsonObject = JObject.Parse(myJson);
List<string> links = jsonObject.SelectToken("_embedded.funding-sources")
    .Where(fundingSource => !(bool)fundingSource["removed"])
    .Select(fundingSource => (string)fundingSource.SelectToken("_links.self.href"))
    .ToList();

Console.WriteLine(string.Join(Environment.NewLine, links));
Run Code Online (Sandbox Code Playgroud)

小提琴:https : //dotnetfiddle.net/gnyGgk