Avatar of kriskyk
kriskyk

asked on 

Cast complex deserialized Json object to enumerable so that it can be bound to an a gridview

I need to understand how to cast a complex deserialized  Json object to enumerable so that it can be bound to an a gridview

           var enumerable = new[] { GetBuilds().Result};
                       

            GridView1.DataSource = enumerable;
            GridView1.DataBind();

Open in new window




2020-01-13_11-28-21.png


Currently it only results in the top node, i need to get the data in the fields node.

2020-01-13_11-29-37.png
ASP.NETC#JSON

Avatar of undefined
Last Comment
Eduard Ghergu

8/22/2022 - Mon