web-dev-qa-db-ja.com

Newtonsoft.Json.Linq.JArrayを特定のオブジェタイプのリストに変換する

私は{Newtonsoft.Json.Linq.JArray}型の以下の変数を持っています。

properties["Value"] {[
  {
    "Name": "Username",
    "Selected": true
  },
  {
    "Name": "Password",
    "Selected": true
  }

]}

達成したいことはこれをList<SelectableEnumItem>に変換することです。ここでSelectableEnumItemは次の型です。

public class SelectableEnumItem
    {
        public string Name { get; set; }
        public bool Selected { get; set; }
    }

私はプログラミングにかなり慣れていませんし、これが可能かどうかはわかりません。実用的な例でのどんな助けでも大いに感謝されるでしょう。

203
Mdb

array.ToObject<List<SelectableEnumItem>>()メソッドを呼び出すだけです。必要なものが返されます。

ドキュメント: JSONを型に変換する

409
HoberMellow

問題の例は、プロパティ名がjsonとコードで完全に一致した、より単純なケースです。プロパティ名が完全に一致しない場合は、 jsonのプロパティは"first_name": "Mark"、コードのプロパティはFirstNameです。次に、 Selectメソッド を次のように使用します。

List<SelectableEnumItem> items = ((JArray)array).Select(x => new SelectableEnumItem
{
    FirstName = (string)x["first_name"],
    Selected = (bool)x["selected"]
}).ToList();
37
Souvik Basu

私の場合、APIの戻り値は次のとおりです。

{
  "pageIndex": 1,
  "pageSize": 10,
  "totalCount": 1,
  "totalPageCount": 1,
  "items": [
    {
      "firstName": "Stephen",
      "otherNames": "Ebichondo",
      "phoneNumber": "+254721250736",
      "gender": 0,
      "clientStatus": 0,
      "dateOfBirth": "1979-08-16T00:00:00",
      "nationalID": "21734397",
      "emailAddress": "[email protected]",
      "id": 1,
      "addedDate": "2018-02-02T00:00:00",
      "modifiedDate": "2018-02-02T00:00:00"
    }
  ],
  "hasPreviousPage": false,
  "hasNextPage": false
}

Items配列からクライアントのリストへの変換は、次のように処理されました。

 if (responseMessage.IsSuccessStatusCode)
        {
            var responseData = responseMessage.Content.ReadAsStringAsync().Result;
            JObject result = JObject.Parse(responseData);

            var clientarray = result["items"].Value<JArray>();
            List<Client> clients = clientarray.ToObject<List<Client>>();
            return View(clients);
        }
3

私は同じを達成するために異なる方法を考えることができます

IList<SelectableEnumItem> result= array;

または(私はこれがうまくいかないという状況がいくつかありました)

var result = (List<SelectableEnumItem>) array;

またはlinq拡張子を使う

var result = array.CastTo<List<SelectableEnumItem>>();

または

var result= array.Select(x=> x).ToArray<SelectableEnumItem>();

もっと厳密に

var result= array.Select(x=> new SelectableEnumItem{FirstName= x.Name, Selected = bool.Parse(x.selected) });

動的オブジェクトを使用した上記の解決策に注意を払ってください

私は上記の解決策の組み合わせであるいくつかのさらなる解決策を考えることができます。しかし私はそれがそこにあるほとんどすべての利用可能な方法をカバーすると思います。

私は私が最初のものを使います

2
Mo Hrad A
using Newtonsoft.Json.Linq;
using System.Linq;
using System.IO;
using System.Collections.Generic;

public List<string> GetJsonValues(string filePath, string propertyName)
{
  List<string> values = new List<string>();
  string read = string.Empty;
  using (StreamReader r = new StreamReader(filePath))
  {
    var json = r.ReadToEnd();
    var jObj = JObject.Parse(json);
    foreach (var j in jObj.Properties())
    {
      if (j.Name.Equals(propertyName))
      {
        var value = jObj[j.Name] as JArray;
        return values = value.ToObject<List<string>>();
      }
    }
    return values;
  }
}
2
Mohammed Hossen

IListを使用してJArray Countを取得し、ループを使用してリストに変換する

       var array = result["items"].Value<JArray>();

        IList collection = (IList)array;

        var list = new List<string>();

        for (int i = 0; i < collection.Count; j++)
            {
              list.Add(collection[i].ToString());             
            }                         
1
Kumaran