Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

JSON array to ExpandoObject via JSON.NET

I am using the following approach to convert most of my API JSON results into an object:

public void ExpandoObject()
{
    var sampleDATA = Sample.Create();
    var json = JsonConvert.SerializeObject(sampleDATA);

    var expConverter = new ExpandoObjectConverter();
    dynamic obj = JsonConvert.DeserializeObject<ExpandoObject>(json, expConverter);

    var a = obj.A;

    var b = obj.B;

    var c = obj.C; //and so on...
}

However, I run into a strange situation with this format of JSON...

[
    {
        "id": 42,
        "name": "example name",
        "member_count": 42,
        "created_date": "example created_date",
        "last_update": "example last_update",
        "last_reset": "example last_reset"
    }
]

Because it is an array, how can I access the items, the ExpandoObject is supposed to be an IDictionary of sorts.

Anyone had experience with this?

like image 317
RealityDysfunction Avatar asked Mar 20 '23 04:03

RealityDysfunction


1 Answers

Use List<ExpandoObject> when deserializing:

var expConverter = new ExpandoObjectConverter();
dynamic obj = JsonConvert.DeserializeObject<List<ExpandoObject>>(json, expConverter);

Your obj variable will be list of expando objects that you can iterate.

like image 103
Ilija Dimov Avatar answered Mar 23 '23 20:03

Ilija Dimov