Complex Nested JSON Array Conversion to DataTable - C#2019 Community Moderator ElectionConvert JSON to DataTableImport Complex JSON file to C# dataTableAdding values to a C# arrayConvert array to JSONDeserialize JSON into C# dynamic object?How do I turn a C# object into a JSON string in .NET?How can I parse JSON with C#?Convert datatable to JSON in C#Generically Flatten Json using c#Converting API call Json URL string (Json Objects) into C# Datatable (Without using any constructive class with getters and setters or poco)JSON converting into C# or classesAccessing nested JSON [String: Any] object and appending to it

The meaning of 振り in 無茶振り

Brexit - No Deal Rejection

Aluminum electrolytic or ceramic capacitors for linear regulator input and output?

What options are left, if Britain cannot decide?

Math equation in non italic font

Does multi-classing into Fighter give you heavy armor proficiency?

Could this Scherzo by Beethoven be considered to be a fugue?

While on vacation my taxi took a longer route, possibly to scam me out of money. How can I deal with this?

Why is the President allowed to veto a cancellation of emergency powers?

Is it ever recommended to use mean/multiple imputation when using tree-based predictive models?

Recruiter wants very extensive technical details about all of my previous work

Is there a symmetric-key algorithm which we can use for creating a signature?

Employee lack of ownership

Relationship between sampajanna definitions in SN 47.2 and SN 47.35

Is a party consisting of only a bard, a cleric, and a warlock functional long-term?

Four married couples attend a party. Each person shakes hands with every other person, except their own spouse, exactly once. How many handshakes?

Custom alignment for GeoMarkers

Why is a white electrical wire connected to 2 black wires?

Fastest way to pop N items from a large dict

How to explain that I do not want to visit a country due to personal safety concern?

Do I need to be arrogant to get ahead?

Why Choose Less Effective Armour Types?

Describing a chess game in a novel

Does .bashrc contain syntax errors?



Complex Nested JSON Array Conversion to DataTable - C#



2019 Community Moderator ElectionConvert JSON to DataTableImport Complex JSON file to C# dataTableAdding values to a C# arrayConvert array to JSONDeserialize JSON into C# dynamic object?How do I turn a C# object into a JSON string in .NET?How can I parse JSON with C#?Convert datatable to JSON in C#Generically Flatten Json using c#Converting API call Json URL string (Json Objects) into C# Datatable (Without using any constructive class with getters and setters or poco)JSON converting into C# or classesAccessing nested JSON [String: Any] object and appending to it










-1















I'm completely new to JSON and need to be able to get a my JSON string converted into a DataTable.



Here is my JSON. I have changed about data for security reasons



[

"uuid": "af9fcfc7-61af-4484-aaa8-7dhcced2f2f79",
"call_start_time": 1551892096171,
"call_duration": 1150,
"created_on": "2019-03-06",
"cost": 0,
"call_type": "inbound",
"from":
"uuid": "",
"type": "number",
"name": "",
"nickname": "",
"number": "+44 7*** ******"
,
"to":
"uuid": "",
"type": "number",
"name": "",
"nickname": "",
"number": "+44 **** ******0"
,
"answered": true,
"answered_by":
"uuid": "48bj949-e72e-4239-a337-e181a1b45841",
"type": "sipuser",
"name": "SipUser",
"nickname": "Myself",
"number": "1001"
,
"has_recording": true,
"call_route": "c30e45g0e-3da4-4a67-9a04-27e1d9d31129",
"is_fax": false
,

"uuid": "f62kmop2b-f929-4afc-8c05-a8c1bc43225d",
"call_start_time": 1551890795202,
"call_duration": 12,
"created_on": "2019-03-06",
"cost": 0.012,
"call_type": "outbound",
"from":
"uuid": "68a50328-f5b0-4c5e-837c-667ea50878f3",
"type": "sipuser",
"name": "Spare",
"nickname": "Spare",
"number": "1011"
,
"to":
"uuid": "",
"type": "number",
"name": "",
"nickname": "",
"number": "+44 *** *** ****"
,
"answered": true,
"answered_by":
"uuid": "",
"type": "number",
"name": "",
"nickname": "",
"number": "+44 ***1*****0"
,
"has_recording": false,
"call_route": "",
"is_fax": false
,

"uuid": "b1b495c4-ecf6-44c0-8020-28c9eddc7afe",
"call_start_time": 1551890780607,
"call_duration": 10,
"created_on": "2019-03-06",
"cost": 0.012,
"call_type": "outbound",
"from":
"uuid": "68a50328-f5b0-4c5e-837c-667ea50878f3",
"type": "sipuser",
"name": "Spare",
"nickname": "Spare",
"number": "1011"
,
"to":
"uuid": "",
"type": "number",
"name": "",
"nickname": "",
"number": "+44 *** *** ****"
,
"answered": true,
"answered_by":
"uuid": "",
"type": "number",
"name": "",
"nickname": "",
"number": "+44 *** *** ****"
,
"has_recording": false,
"call_route": "",
"is_fax": false

]


The way I want it presented needs to be similar to the way this website presents the datatable



https://konklone.io/json/



I've been all of the web now and am starting to run out of options. I did try looking into creating it with classes however that wasn't successful.
I have also tried all of the following examples (plus others)



https://www.code-sample.com/2017/04/convert-json-to-datatable-asp-net-c.html



Import Complex JSON file to C# dataTable



Convert JSON to DataTable



https://www.codeproject.com/Questions/590838/convertplusJSONplusstringplustoplusdatatable



Even if this goes into a DataSet and then I sort out the tables from there. Any help at all will be much appreciated.



Edit



I will explain why this is a little bit different from the assumed duplicate question located here



Convert JSON to DataTable



The answer to this question doesn't seem to be taking into account that I have nested JSON's that I need to get access to. I have tried it and I still do not get any of the from/number fields and the to/number fields.
I will admit that my question is a extention to this other duplicate question










share|improve this question
























  • Why were the solutions you tried not successful? What didn't work?

    – fridoo
    Mar 6 at 20:59












  • Some of the solutions I tried didn't include all of the columns, I pressume this might be down to the column headers being similer (e.g. to/number & from/number may have been conflicting so I was only getting the to/number column). Other stuff that I tried kept coming back with a deserilization exception message, which for the life of me, I couldn't crack (e.g. Newtonsoft.Json.JsonSerializationException: 'Additional text found in JSON string after finishing deserializing object. Path '[0].uuid', line 3, position 11.')

    – Flakie
    Mar 6 at 21:07







  • 1





    Possible duplicate of Convert JSON to DataTable

    – Make StackOverflow Good Again
    Mar 6 at 21:25















-1















I'm completely new to JSON and need to be able to get a my JSON string converted into a DataTable.



Here is my JSON. I have changed about data for security reasons



[

"uuid": "af9fcfc7-61af-4484-aaa8-7dhcced2f2f79",
"call_start_time": 1551892096171,
"call_duration": 1150,
"created_on": "2019-03-06",
"cost": 0,
"call_type": "inbound",
"from":
"uuid": "",
"type": "number",
"name": "",
"nickname": "",
"number": "+44 7*** ******"
,
"to":
"uuid": "",
"type": "number",
"name": "",
"nickname": "",
"number": "+44 **** ******0"
,
"answered": true,
"answered_by":
"uuid": "48bj949-e72e-4239-a337-e181a1b45841",
"type": "sipuser",
"name": "SipUser",
"nickname": "Myself",
"number": "1001"
,
"has_recording": true,
"call_route": "c30e45g0e-3da4-4a67-9a04-27e1d9d31129",
"is_fax": false
,

"uuid": "f62kmop2b-f929-4afc-8c05-a8c1bc43225d",
"call_start_time": 1551890795202,
"call_duration": 12,
"created_on": "2019-03-06",
"cost": 0.012,
"call_type": "outbound",
"from":
"uuid": "68a50328-f5b0-4c5e-837c-667ea50878f3",
"type": "sipuser",
"name": "Spare",
"nickname": "Spare",
"number": "1011"
,
"to":
"uuid": "",
"type": "number",
"name": "",
"nickname": "",
"number": "+44 *** *** ****"
,
"answered": true,
"answered_by":
"uuid": "",
"type": "number",
"name": "",
"nickname": "",
"number": "+44 ***1*****0"
,
"has_recording": false,
"call_route": "",
"is_fax": false
,

"uuid": "b1b495c4-ecf6-44c0-8020-28c9eddc7afe",
"call_start_time": 1551890780607,
"call_duration": 10,
"created_on": "2019-03-06",
"cost": 0.012,
"call_type": "outbound",
"from":
"uuid": "68a50328-f5b0-4c5e-837c-667ea50878f3",
"type": "sipuser",
"name": "Spare",
"nickname": "Spare",
"number": "1011"
,
"to":
"uuid": "",
"type": "number",
"name": "",
"nickname": "",
"number": "+44 *** *** ****"
,
"answered": true,
"answered_by":
"uuid": "",
"type": "number",
"name": "",
"nickname": "",
"number": "+44 *** *** ****"
,
"has_recording": false,
"call_route": "",
"is_fax": false

]


The way I want it presented needs to be similar to the way this website presents the datatable



https://konklone.io/json/



I've been all of the web now and am starting to run out of options. I did try looking into creating it with classes however that wasn't successful.
I have also tried all of the following examples (plus others)



https://www.code-sample.com/2017/04/convert-json-to-datatable-asp-net-c.html



Import Complex JSON file to C# dataTable



Convert JSON to DataTable



https://www.codeproject.com/Questions/590838/convertplusJSONplusstringplustoplusdatatable



Even if this goes into a DataSet and then I sort out the tables from there. Any help at all will be much appreciated.



Edit



I will explain why this is a little bit different from the assumed duplicate question located here



Convert JSON to DataTable



The answer to this question doesn't seem to be taking into account that I have nested JSON's that I need to get access to. I have tried it and I still do not get any of the from/number fields and the to/number fields.
I will admit that my question is a extention to this other duplicate question










share|improve this question
























  • Why were the solutions you tried not successful? What didn't work?

    – fridoo
    Mar 6 at 20:59












  • Some of the solutions I tried didn't include all of the columns, I pressume this might be down to the column headers being similer (e.g. to/number & from/number may have been conflicting so I was only getting the to/number column). Other stuff that I tried kept coming back with a deserilization exception message, which for the life of me, I couldn't crack (e.g. Newtonsoft.Json.JsonSerializationException: 'Additional text found in JSON string after finishing deserializing object. Path '[0].uuid', line 3, position 11.')

    – Flakie
    Mar 6 at 21:07







  • 1





    Possible duplicate of Convert JSON to DataTable

    – Make StackOverflow Good Again
    Mar 6 at 21:25













-1












-1








-1








I'm completely new to JSON and need to be able to get a my JSON string converted into a DataTable.



Here is my JSON. I have changed about data for security reasons



[

"uuid": "af9fcfc7-61af-4484-aaa8-7dhcced2f2f79",
"call_start_time": 1551892096171,
"call_duration": 1150,
"created_on": "2019-03-06",
"cost": 0,
"call_type": "inbound",
"from":
"uuid": "",
"type": "number",
"name": "",
"nickname": "",
"number": "+44 7*** ******"
,
"to":
"uuid": "",
"type": "number",
"name": "",
"nickname": "",
"number": "+44 **** ******0"
,
"answered": true,
"answered_by":
"uuid": "48bj949-e72e-4239-a337-e181a1b45841",
"type": "sipuser",
"name": "SipUser",
"nickname": "Myself",
"number": "1001"
,
"has_recording": true,
"call_route": "c30e45g0e-3da4-4a67-9a04-27e1d9d31129",
"is_fax": false
,

"uuid": "f62kmop2b-f929-4afc-8c05-a8c1bc43225d",
"call_start_time": 1551890795202,
"call_duration": 12,
"created_on": "2019-03-06",
"cost": 0.012,
"call_type": "outbound",
"from":
"uuid": "68a50328-f5b0-4c5e-837c-667ea50878f3",
"type": "sipuser",
"name": "Spare",
"nickname": "Spare",
"number": "1011"
,
"to":
"uuid": "",
"type": "number",
"name": "",
"nickname": "",
"number": "+44 *** *** ****"
,
"answered": true,
"answered_by":
"uuid": "",
"type": "number",
"name": "",
"nickname": "",
"number": "+44 ***1*****0"
,
"has_recording": false,
"call_route": "",
"is_fax": false
,

"uuid": "b1b495c4-ecf6-44c0-8020-28c9eddc7afe",
"call_start_time": 1551890780607,
"call_duration": 10,
"created_on": "2019-03-06",
"cost": 0.012,
"call_type": "outbound",
"from":
"uuid": "68a50328-f5b0-4c5e-837c-667ea50878f3",
"type": "sipuser",
"name": "Spare",
"nickname": "Spare",
"number": "1011"
,
"to":
"uuid": "",
"type": "number",
"name": "",
"nickname": "",
"number": "+44 *** *** ****"
,
"answered": true,
"answered_by":
"uuid": "",
"type": "number",
"name": "",
"nickname": "",
"number": "+44 *** *** ****"
,
"has_recording": false,
"call_route": "",
"is_fax": false

]


The way I want it presented needs to be similar to the way this website presents the datatable



https://konklone.io/json/



I've been all of the web now and am starting to run out of options. I did try looking into creating it with classes however that wasn't successful.
I have also tried all of the following examples (plus others)



https://www.code-sample.com/2017/04/convert-json-to-datatable-asp-net-c.html



Import Complex JSON file to C# dataTable



Convert JSON to DataTable



https://www.codeproject.com/Questions/590838/convertplusJSONplusstringplustoplusdatatable



Even if this goes into a DataSet and then I sort out the tables from there. Any help at all will be much appreciated.



Edit



I will explain why this is a little bit different from the assumed duplicate question located here



Convert JSON to DataTable



The answer to this question doesn't seem to be taking into account that I have nested JSON's that I need to get access to. I have tried it and I still do not get any of the from/number fields and the to/number fields.
I will admit that my question is a extention to this other duplicate question










share|improve this question
















I'm completely new to JSON and need to be able to get a my JSON string converted into a DataTable.



Here is my JSON. I have changed about data for security reasons



[

"uuid": "af9fcfc7-61af-4484-aaa8-7dhcced2f2f79",
"call_start_time": 1551892096171,
"call_duration": 1150,
"created_on": "2019-03-06",
"cost": 0,
"call_type": "inbound",
"from":
"uuid": "",
"type": "number",
"name": "",
"nickname": "",
"number": "+44 7*** ******"
,
"to":
"uuid": "",
"type": "number",
"name": "",
"nickname": "",
"number": "+44 **** ******0"
,
"answered": true,
"answered_by":
"uuid": "48bj949-e72e-4239-a337-e181a1b45841",
"type": "sipuser",
"name": "SipUser",
"nickname": "Myself",
"number": "1001"
,
"has_recording": true,
"call_route": "c30e45g0e-3da4-4a67-9a04-27e1d9d31129",
"is_fax": false
,

"uuid": "f62kmop2b-f929-4afc-8c05-a8c1bc43225d",
"call_start_time": 1551890795202,
"call_duration": 12,
"created_on": "2019-03-06",
"cost": 0.012,
"call_type": "outbound",
"from":
"uuid": "68a50328-f5b0-4c5e-837c-667ea50878f3",
"type": "sipuser",
"name": "Spare",
"nickname": "Spare",
"number": "1011"
,
"to":
"uuid": "",
"type": "number",
"name": "",
"nickname": "",
"number": "+44 *** *** ****"
,
"answered": true,
"answered_by":
"uuid": "",
"type": "number",
"name": "",
"nickname": "",
"number": "+44 ***1*****0"
,
"has_recording": false,
"call_route": "",
"is_fax": false
,

"uuid": "b1b495c4-ecf6-44c0-8020-28c9eddc7afe",
"call_start_time": 1551890780607,
"call_duration": 10,
"created_on": "2019-03-06",
"cost": 0.012,
"call_type": "outbound",
"from":
"uuid": "68a50328-f5b0-4c5e-837c-667ea50878f3",
"type": "sipuser",
"name": "Spare",
"nickname": "Spare",
"number": "1011"
,
"to":
"uuid": "",
"type": "number",
"name": "",
"nickname": "",
"number": "+44 *** *** ****"
,
"answered": true,
"answered_by":
"uuid": "",
"type": "number",
"name": "",
"nickname": "",
"number": "+44 *** *** ****"
,
"has_recording": false,
"call_route": "",
"is_fax": false

]


The way I want it presented needs to be similar to the way this website presents the datatable



https://konklone.io/json/



I've been all of the web now and am starting to run out of options. I did try looking into creating it with classes however that wasn't successful.
I have also tried all of the following examples (plus others)



https://www.code-sample.com/2017/04/convert-json-to-datatable-asp-net-c.html



Import Complex JSON file to C# dataTable



Convert JSON to DataTable



https://www.codeproject.com/Questions/590838/convertplusJSONplusstringplustoplusdatatable



Even if this goes into a DataSet and then I sort out the tables from there. Any help at all will be much appreciated.



Edit



I will explain why this is a little bit different from the assumed duplicate question located here



Convert JSON to DataTable



The answer to this question doesn't seem to be taking into account that I have nested JSON's that I need to get access to. I have tried it and I still do not get any of the from/number fields and the to/number fields.
I will admit that my question is a extention to this other duplicate question







c# json datatable






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Mar 8 at 9:10









marc_s

581k13011221268




581k13011221268










asked Mar 6 at 20:54









FlakieFlakie

32




32












  • Why were the solutions you tried not successful? What didn't work?

    – fridoo
    Mar 6 at 20:59












  • Some of the solutions I tried didn't include all of the columns, I pressume this might be down to the column headers being similer (e.g. to/number & from/number may have been conflicting so I was only getting the to/number column). Other stuff that I tried kept coming back with a deserilization exception message, which for the life of me, I couldn't crack (e.g. Newtonsoft.Json.JsonSerializationException: 'Additional text found in JSON string after finishing deserializing object. Path '[0].uuid', line 3, position 11.')

    – Flakie
    Mar 6 at 21:07







  • 1





    Possible duplicate of Convert JSON to DataTable

    – Make StackOverflow Good Again
    Mar 6 at 21:25

















  • Why were the solutions you tried not successful? What didn't work?

    – fridoo
    Mar 6 at 20:59












  • Some of the solutions I tried didn't include all of the columns, I pressume this might be down to the column headers being similer (e.g. to/number & from/number may have been conflicting so I was only getting the to/number column). Other stuff that I tried kept coming back with a deserilization exception message, which for the life of me, I couldn't crack (e.g. Newtonsoft.Json.JsonSerializationException: 'Additional text found in JSON string after finishing deserializing object. Path '[0].uuid', line 3, position 11.')

    – Flakie
    Mar 6 at 21:07







  • 1





    Possible duplicate of Convert JSON to DataTable

    – Make StackOverflow Good Again
    Mar 6 at 21:25
















Why were the solutions you tried not successful? What didn't work?

– fridoo
Mar 6 at 20:59






Why were the solutions you tried not successful? What didn't work?

– fridoo
Mar 6 at 20:59














Some of the solutions I tried didn't include all of the columns, I pressume this might be down to the column headers being similer (e.g. to/number & from/number may have been conflicting so I was only getting the to/number column). Other stuff that I tried kept coming back with a deserilization exception message, which for the life of me, I couldn't crack (e.g. Newtonsoft.Json.JsonSerializationException: 'Additional text found in JSON string after finishing deserializing object. Path '[0].uuid', line 3, position 11.')

– Flakie
Mar 6 at 21:07






Some of the solutions I tried didn't include all of the columns, I pressume this might be down to the column headers being similer (e.g. to/number & from/number may have been conflicting so I was only getting the to/number column). Other stuff that I tried kept coming back with a deserilization exception message, which for the life of me, I couldn't crack (e.g. Newtonsoft.Json.JsonSerializationException: 'Additional text found in JSON string after finishing deserializing object. Path '[0].uuid', line 3, position 11.')

– Flakie
Mar 6 at 21:07





1




1





Possible duplicate of Convert JSON to DataTable

– Make StackOverflow Good Again
Mar 6 at 21:25





Possible duplicate of Convert JSON to DataTable

– Make StackOverflow Good Again
Mar 6 at 21:25












1 Answer
1






active

oldest

votes


















0














Ok so here is the code to parse your JSON structure into a C# List. Once you have this list, you can convert it to a DataTable using the methods that you have researched. I have created a sample Data Table based on your JSON structure.



Your model would be:



public class JsonInfo

public string uuid get; set;
public string call_start_time get; set;
public string call_duration get; set;
public string created_on get; set;
public string cost get; set;
public string call_type get; set;
public string answered get; set;
public string has_recording get; set;
public string call_route get; set;
public string is_fax get; set;
public From from get; set;
public To to get; set;
public AnsweredBy answered_by get; set;


public class From

public string uuid get; set;
public string type get; set;
public string name get; set;
public string nickname get; set;
public string number get; set;


public class To

public string uuid get; set;
public string type get; set;
public string name get; set;
public string nickname get; set;
public string number get; set;


public class AnsweredBy

public string uuid get; set;
public string type get; set;
public string name get; set;
public string nickname get; set;
public string number get; set;

//Create a model to show your information
public class DisplayJsonInfo

public string uuid get; set;
public string call_start_time get; set;
public string call_duration get; set;
public string created_on get; set;
public string cost get; set;
public string from_uuid get; set;
public string from_type get; set;
public string from_name get; set;
public string from_nickname get; set;



To serialize your JSON into created Model and then create your DataTable:



var json = "["uuid":"af9fcfc7-61af-4484-aaa8-7dhcced2f2f79","call_start_time":1551892096171,"call_duration":1150,"created_on":"2019-03-06","cost":0,"call_type":"inbound","from":"uuid":"","type":"number","name":"","nickname":"","number":"+44 7*** ******","to":"uuid":"","type":"number","name":"","nickname":"","number":"+44 **** ******0","answered":true,"answered_by":"uuid":"48bj949-e72e-4239-a337-e181a1b45841","type":"sipuser","name":"SipUser","nickname":"Myself","number":"1001","has_recording":true,"call_route":"c30e45g0e-3da4-4a67-9a04-27e1d9d31129","is_fax":false,"uuid":"f62kmop2b-f929-4afc-8c05-a8c1bc43225d","call_start_time":1551890795202,"call_duration":12,"created_on":"2019-03-06","cost":0.012,"call_type":"outbound","from":"uuid":"68a50328-f5b0-4c5e-837c-667ea50878f3","type":"sipuser","name":"Spare","nickname":"Spare","number":"1011","to":"uuid":"","type":"number","name":"","nickname":"","number":"+44 *** *** ****","answered":true,"answered_by":"uuid":"","type":"number","name":"","nickname":"","number":"+44 ***1*****0","has_recording":false,"call_route":"","is_fax":false,"uuid":"b1b495c4-ecf6-44c0-8020-28c9eddc7afe","call_start_time":1551890780607,"call_duration":10,"created_on":"2019-03-06","cost":0.012,"call_type":"outbound","from":"uuid":"68a50328-f5b0-4c5e-837c-667ea50878f3","type":"sipuser","name":"Spare","nickname":"Spare","number":"1011","to":"uuid":"","type":"number","name":"","nickname":"","number":"+44 *** *** ****","answered":true,"answered_by":"uuid":"","type":"number","name":"","nickname":"","number":"+44 *** *** ****","has_recording":false,"call_route":"","is_fax":false]";
var data = JsonConvert.DeserializeObject<List<JsonInfo>>(json);
//Call your helper method to convert
CreateDataTable cl = new CreateDataTable();
DataTable dt = new DataTable();
DisplayJsonInfo show = new DisplayJsonInfo();
List<DisplayJsonInfo> showInfo = new List<DisplayJsonInfo>();

foreach(var value in data)

showInfo.Add(new DisplayJsonInfo

call_duration = value.call_duration,
call_start_time = value.call_start_time,
cost = value.cost,
uuid = value.uuid,
created_on = value.created_on,
from_uuid = value.from.uuid,
from_name = value.from.name,
from_type = value.from.type,
from_nickname=value.from.nickname
);

dt = cl.ToDataTable(showInfo);


Once you have this use a helper extension like ToDataTable() as mentioned here: Convert JSON to DataTable



Edit:



So after parsing out the information and using this helper to convert your List to DataTable:



using System;
using System.Text;
using System.IO;
using System.Configuration;
using System.Data;
using System.Collections.Generic;
using System.ComponentModel;

public class CreateDataTable

public DataTable ToDataTable<T>(IList<T> data)

PropertyDescriptorCollection props =
TypeDescriptor.GetProperties(typeof(T));
DataTable table = new DataTable();
for (int i = 0; i < props.Count; i++)

PropertyDescriptor prop = props[i];
table.Columns.Add(prop.Name, prop.PropertyType);

object[] values = new object[props.Count];
foreach (T item in data)

for (int i = 0; i < values.Length; i++)

values[i] = props[i].GetValue(item);

table.Rows.Add(values);

return table;




Your DataTable would look something like this:



enter image description here



Edit Description:
I have created a model only to show your required data into the DataTable. Since I have parsed the JSON data into my C# list, I can access the data shown in my code using foreach loop. Then I simply get the data what I required and then create my Data Table.



Cheers.






share|improve this answer

























  • Thanks for the help, however there still seems to be a slight issue. I'm still not getting details about the 'from' and 'to' parts of the JSON. I am however getting columns called 'from' and 'to' which is further than what I was before.

    – Flakie
    Mar 6 at 21:56











  • I do not quite understand what you mean here? In your model, the To, From and AnsweredBy are objects that have data in them parsed during deserialization. You would need to handle their data and display in your DataTable.

    – Rahul Sharma
    Mar 6 at 21:58











  • That DataTable that you have in your edit is exactly what I got. What I need is that DataTable to contain infomation about the from/number and answered_by/number. I think this website will show best my intentions konklone.io/json. You say I need to handle my Data and Display in my DataTable. I'm not too sure what you mean by this

    – Flakie
    Mar 6 at 22:14












  • Please check updated answer to match your requirements. Please let me know if it suffices to your need. Thanks

    – Rahul Sharma
    Mar 6 at 22:36











  • That's perfect! That is exactly what I need. Apologies for the abundance of C# knowledge, this was definitely a learning curve for myself

    – Flakie
    Mar 6 at 22:48










Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55031974%2fcomplex-nested-json-array-conversion-to-datatable-c-sharp%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes









0














Ok so here is the code to parse your JSON structure into a C# List. Once you have this list, you can convert it to a DataTable using the methods that you have researched. I have created a sample Data Table based on your JSON structure.



Your model would be:



public class JsonInfo

public string uuid get; set;
public string call_start_time get; set;
public string call_duration get; set;
public string created_on get; set;
public string cost get; set;
public string call_type get; set;
public string answered get; set;
public string has_recording get; set;
public string call_route get; set;
public string is_fax get; set;
public From from get; set;
public To to get; set;
public AnsweredBy answered_by get; set;


public class From

public string uuid get; set;
public string type get; set;
public string name get; set;
public string nickname get; set;
public string number get; set;


public class To

public string uuid get; set;
public string type get; set;
public string name get; set;
public string nickname get; set;
public string number get; set;


public class AnsweredBy

public string uuid get; set;
public string type get; set;
public string name get; set;
public string nickname get; set;
public string number get; set;

//Create a model to show your information
public class DisplayJsonInfo

public string uuid get; set;
public string call_start_time get; set;
public string call_duration get; set;
public string created_on get; set;
public string cost get; set;
public string from_uuid get; set;
public string from_type get; set;
public string from_name get; set;
public string from_nickname get; set;



To serialize your JSON into created Model and then create your DataTable:



var json = "["uuid":"af9fcfc7-61af-4484-aaa8-7dhcced2f2f79","call_start_time":1551892096171,"call_duration":1150,"created_on":"2019-03-06","cost":0,"call_type":"inbound","from":"uuid":"","type":"number","name":"","nickname":"","number":"+44 7*** ******","to":"uuid":"","type":"number","name":"","nickname":"","number":"+44 **** ******0","answered":true,"answered_by":"uuid":"48bj949-e72e-4239-a337-e181a1b45841","type":"sipuser","name":"SipUser","nickname":"Myself","number":"1001","has_recording":true,"call_route":"c30e45g0e-3da4-4a67-9a04-27e1d9d31129","is_fax":false,"uuid":"f62kmop2b-f929-4afc-8c05-a8c1bc43225d","call_start_time":1551890795202,"call_duration":12,"created_on":"2019-03-06","cost":0.012,"call_type":"outbound","from":"uuid":"68a50328-f5b0-4c5e-837c-667ea50878f3","type":"sipuser","name":"Spare","nickname":"Spare","number":"1011","to":"uuid":"","type":"number","name":"","nickname":"","number":"+44 *** *** ****","answered":true,"answered_by":"uuid":"","type":"number","name":"","nickname":"","number":"+44 ***1*****0","has_recording":false,"call_route":"","is_fax":false,"uuid":"b1b495c4-ecf6-44c0-8020-28c9eddc7afe","call_start_time":1551890780607,"call_duration":10,"created_on":"2019-03-06","cost":0.012,"call_type":"outbound","from":"uuid":"68a50328-f5b0-4c5e-837c-667ea50878f3","type":"sipuser","name":"Spare","nickname":"Spare","number":"1011","to":"uuid":"","type":"number","name":"","nickname":"","number":"+44 *** *** ****","answered":true,"answered_by":"uuid":"","type":"number","name":"","nickname":"","number":"+44 *** *** ****","has_recording":false,"call_route":"","is_fax":false]";
var data = JsonConvert.DeserializeObject<List<JsonInfo>>(json);
//Call your helper method to convert
CreateDataTable cl = new CreateDataTable();
DataTable dt = new DataTable();
DisplayJsonInfo show = new DisplayJsonInfo();
List<DisplayJsonInfo> showInfo = new List<DisplayJsonInfo>();

foreach(var value in data)

showInfo.Add(new DisplayJsonInfo

call_duration = value.call_duration,
call_start_time = value.call_start_time,
cost = value.cost,
uuid = value.uuid,
created_on = value.created_on,
from_uuid = value.from.uuid,
from_name = value.from.name,
from_type = value.from.type,
from_nickname=value.from.nickname
);

dt = cl.ToDataTable(showInfo);


Once you have this use a helper extension like ToDataTable() as mentioned here: Convert JSON to DataTable



Edit:



So after parsing out the information and using this helper to convert your List to DataTable:



using System;
using System.Text;
using System.IO;
using System.Configuration;
using System.Data;
using System.Collections.Generic;
using System.ComponentModel;

public class CreateDataTable

public DataTable ToDataTable<T>(IList<T> data)

PropertyDescriptorCollection props =
TypeDescriptor.GetProperties(typeof(T));
DataTable table = new DataTable();
for (int i = 0; i < props.Count; i++)

PropertyDescriptor prop = props[i];
table.Columns.Add(prop.Name, prop.PropertyType);

object[] values = new object[props.Count];
foreach (T item in data)

for (int i = 0; i < values.Length; i++)

values[i] = props[i].GetValue(item);

table.Rows.Add(values);

return table;




Your DataTable would look something like this:



enter image description here



Edit Description:
I have created a model only to show your required data into the DataTable. Since I have parsed the JSON data into my C# list, I can access the data shown in my code using foreach loop. Then I simply get the data what I required and then create my Data Table.



Cheers.






share|improve this answer

























  • Thanks for the help, however there still seems to be a slight issue. I'm still not getting details about the 'from' and 'to' parts of the JSON. I am however getting columns called 'from' and 'to' which is further than what I was before.

    – Flakie
    Mar 6 at 21:56











  • I do not quite understand what you mean here? In your model, the To, From and AnsweredBy are objects that have data in them parsed during deserialization. You would need to handle their data and display in your DataTable.

    – Rahul Sharma
    Mar 6 at 21:58











  • That DataTable that you have in your edit is exactly what I got. What I need is that DataTable to contain infomation about the from/number and answered_by/number. I think this website will show best my intentions konklone.io/json. You say I need to handle my Data and Display in my DataTable. I'm not too sure what you mean by this

    – Flakie
    Mar 6 at 22:14












  • Please check updated answer to match your requirements. Please let me know if it suffices to your need. Thanks

    – Rahul Sharma
    Mar 6 at 22:36











  • That's perfect! That is exactly what I need. Apologies for the abundance of C# knowledge, this was definitely a learning curve for myself

    – Flakie
    Mar 6 at 22:48















0














Ok so here is the code to parse your JSON structure into a C# List. Once you have this list, you can convert it to a DataTable using the methods that you have researched. I have created a sample Data Table based on your JSON structure.



Your model would be:



public class JsonInfo

public string uuid get; set;
public string call_start_time get; set;
public string call_duration get; set;
public string created_on get; set;
public string cost get; set;
public string call_type get; set;
public string answered get; set;
public string has_recording get; set;
public string call_route get; set;
public string is_fax get; set;
public From from get; set;
public To to get; set;
public AnsweredBy answered_by get; set;


public class From

public string uuid get; set;
public string type get; set;
public string name get; set;
public string nickname get; set;
public string number get; set;


public class To

public string uuid get; set;
public string type get; set;
public string name get; set;
public string nickname get; set;
public string number get; set;


public class AnsweredBy

public string uuid get; set;
public string type get; set;
public string name get; set;
public string nickname get; set;
public string number get; set;

//Create a model to show your information
public class DisplayJsonInfo

public string uuid get; set;
public string call_start_time get; set;
public string call_duration get; set;
public string created_on get; set;
public string cost get; set;
public string from_uuid get; set;
public string from_type get; set;
public string from_name get; set;
public string from_nickname get; set;



To serialize your JSON into created Model and then create your DataTable:



var json = "["uuid":"af9fcfc7-61af-4484-aaa8-7dhcced2f2f79","call_start_time":1551892096171,"call_duration":1150,"created_on":"2019-03-06","cost":0,"call_type":"inbound","from":"uuid":"","type":"number","name":"","nickname":"","number":"+44 7*** ******","to":"uuid":"","type":"number","name":"","nickname":"","number":"+44 **** ******0","answered":true,"answered_by":"uuid":"48bj949-e72e-4239-a337-e181a1b45841","type":"sipuser","name":"SipUser","nickname":"Myself","number":"1001","has_recording":true,"call_route":"c30e45g0e-3da4-4a67-9a04-27e1d9d31129","is_fax":false,"uuid":"f62kmop2b-f929-4afc-8c05-a8c1bc43225d","call_start_time":1551890795202,"call_duration":12,"created_on":"2019-03-06","cost":0.012,"call_type":"outbound","from":"uuid":"68a50328-f5b0-4c5e-837c-667ea50878f3","type":"sipuser","name":"Spare","nickname":"Spare","number":"1011","to":"uuid":"","type":"number","name":"","nickname":"","number":"+44 *** *** ****","answered":true,"answered_by":"uuid":"","type":"number","name":"","nickname":"","number":"+44 ***1*****0","has_recording":false,"call_route":"","is_fax":false,"uuid":"b1b495c4-ecf6-44c0-8020-28c9eddc7afe","call_start_time":1551890780607,"call_duration":10,"created_on":"2019-03-06","cost":0.012,"call_type":"outbound","from":"uuid":"68a50328-f5b0-4c5e-837c-667ea50878f3","type":"sipuser","name":"Spare","nickname":"Spare","number":"1011","to":"uuid":"","type":"number","name":"","nickname":"","number":"+44 *** *** ****","answered":true,"answered_by":"uuid":"","type":"number","name":"","nickname":"","number":"+44 *** *** ****","has_recording":false,"call_route":"","is_fax":false]";
var data = JsonConvert.DeserializeObject<List<JsonInfo>>(json);
//Call your helper method to convert
CreateDataTable cl = new CreateDataTable();
DataTable dt = new DataTable();
DisplayJsonInfo show = new DisplayJsonInfo();
List<DisplayJsonInfo> showInfo = new List<DisplayJsonInfo>();

foreach(var value in data)

showInfo.Add(new DisplayJsonInfo

call_duration = value.call_duration,
call_start_time = value.call_start_time,
cost = value.cost,
uuid = value.uuid,
created_on = value.created_on,
from_uuid = value.from.uuid,
from_name = value.from.name,
from_type = value.from.type,
from_nickname=value.from.nickname
);

dt = cl.ToDataTable(showInfo);


Once you have this use a helper extension like ToDataTable() as mentioned here: Convert JSON to DataTable



Edit:



So after parsing out the information and using this helper to convert your List to DataTable:



using System;
using System.Text;
using System.IO;
using System.Configuration;
using System.Data;
using System.Collections.Generic;
using System.ComponentModel;

public class CreateDataTable

public DataTable ToDataTable<T>(IList<T> data)

PropertyDescriptorCollection props =
TypeDescriptor.GetProperties(typeof(T));
DataTable table = new DataTable();
for (int i = 0; i < props.Count; i++)

PropertyDescriptor prop = props[i];
table.Columns.Add(prop.Name, prop.PropertyType);

object[] values = new object[props.Count];
foreach (T item in data)

for (int i = 0; i < values.Length; i++)

values[i] = props[i].GetValue(item);

table.Rows.Add(values);

return table;




Your DataTable would look something like this:



enter image description here



Edit Description:
I have created a model only to show your required data into the DataTable. Since I have parsed the JSON data into my C# list, I can access the data shown in my code using foreach loop. Then I simply get the data what I required and then create my Data Table.



Cheers.






share|improve this answer

























  • Thanks for the help, however there still seems to be a slight issue. I'm still not getting details about the 'from' and 'to' parts of the JSON. I am however getting columns called 'from' and 'to' which is further than what I was before.

    – Flakie
    Mar 6 at 21:56











  • I do not quite understand what you mean here? In your model, the To, From and AnsweredBy are objects that have data in them parsed during deserialization. You would need to handle their data and display in your DataTable.

    – Rahul Sharma
    Mar 6 at 21:58











  • That DataTable that you have in your edit is exactly what I got. What I need is that DataTable to contain infomation about the from/number and answered_by/number. I think this website will show best my intentions konklone.io/json. You say I need to handle my Data and Display in my DataTable. I'm not too sure what you mean by this

    – Flakie
    Mar 6 at 22:14












  • Please check updated answer to match your requirements. Please let me know if it suffices to your need. Thanks

    – Rahul Sharma
    Mar 6 at 22:36











  • That's perfect! That is exactly what I need. Apologies for the abundance of C# knowledge, this was definitely a learning curve for myself

    – Flakie
    Mar 6 at 22:48













0












0








0







Ok so here is the code to parse your JSON structure into a C# List. Once you have this list, you can convert it to a DataTable using the methods that you have researched. I have created a sample Data Table based on your JSON structure.



Your model would be:



public class JsonInfo

public string uuid get; set;
public string call_start_time get; set;
public string call_duration get; set;
public string created_on get; set;
public string cost get; set;
public string call_type get; set;
public string answered get; set;
public string has_recording get; set;
public string call_route get; set;
public string is_fax get; set;
public From from get; set;
public To to get; set;
public AnsweredBy answered_by get; set;


public class From

public string uuid get; set;
public string type get; set;
public string name get; set;
public string nickname get; set;
public string number get; set;


public class To

public string uuid get; set;
public string type get; set;
public string name get; set;
public string nickname get; set;
public string number get; set;


public class AnsweredBy

public string uuid get; set;
public string type get; set;
public string name get; set;
public string nickname get; set;
public string number get; set;

//Create a model to show your information
public class DisplayJsonInfo

public string uuid get; set;
public string call_start_time get; set;
public string call_duration get; set;
public string created_on get; set;
public string cost get; set;
public string from_uuid get; set;
public string from_type get; set;
public string from_name get; set;
public string from_nickname get; set;



To serialize your JSON into created Model and then create your DataTable:



var json = "["uuid":"af9fcfc7-61af-4484-aaa8-7dhcced2f2f79","call_start_time":1551892096171,"call_duration":1150,"created_on":"2019-03-06","cost":0,"call_type":"inbound","from":"uuid":"","type":"number","name":"","nickname":"","number":"+44 7*** ******","to":"uuid":"","type":"number","name":"","nickname":"","number":"+44 **** ******0","answered":true,"answered_by":"uuid":"48bj949-e72e-4239-a337-e181a1b45841","type":"sipuser","name":"SipUser","nickname":"Myself","number":"1001","has_recording":true,"call_route":"c30e45g0e-3da4-4a67-9a04-27e1d9d31129","is_fax":false,"uuid":"f62kmop2b-f929-4afc-8c05-a8c1bc43225d","call_start_time":1551890795202,"call_duration":12,"created_on":"2019-03-06","cost":0.012,"call_type":"outbound","from":"uuid":"68a50328-f5b0-4c5e-837c-667ea50878f3","type":"sipuser","name":"Spare","nickname":"Spare","number":"1011","to":"uuid":"","type":"number","name":"","nickname":"","number":"+44 *** *** ****","answered":true,"answered_by":"uuid":"","type":"number","name":"","nickname":"","number":"+44 ***1*****0","has_recording":false,"call_route":"","is_fax":false,"uuid":"b1b495c4-ecf6-44c0-8020-28c9eddc7afe","call_start_time":1551890780607,"call_duration":10,"created_on":"2019-03-06","cost":0.012,"call_type":"outbound","from":"uuid":"68a50328-f5b0-4c5e-837c-667ea50878f3","type":"sipuser","name":"Spare","nickname":"Spare","number":"1011","to":"uuid":"","type":"number","name":"","nickname":"","number":"+44 *** *** ****","answered":true,"answered_by":"uuid":"","type":"number","name":"","nickname":"","number":"+44 *** *** ****","has_recording":false,"call_route":"","is_fax":false]";
var data = JsonConvert.DeserializeObject<List<JsonInfo>>(json);
//Call your helper method to convert
CreateDataTable cl = new CreateDataTable();
DataTable dt = new DataTable();
DisplayJsonInfo show = new DisplayJsonInfo();
List<DisplayJsonInfo> showInfo = new List<DisplayJsonInfo>();

foreach(var value in data)

showInfo.Add(new DisplayJsonInfo

call_duration = value.call_duration,
call_start_time = value.call_start_time,
cost = value.cost,
uuid = value.uuid,
created_on = value.created_on,
from_uuid = value.from.uuid,
from_name = value.from.name,
from_type = value.from.type,
from_nickname=value.from.nickname
);

dt = cl.ToDataTable(showInfo);


Once you have this use a helper extension like ToDataTable() as mentioned here: Convert JSON to DataTable



Edit:



So after parsing out the information and using this helper to convert your List to DataTable:



using System;
using System.Text;
using System.IO;
using System.Configuration;
using System.Data;
using System.Collections.Generic;
using System.ComponentModel;

public class CreateDataTable

public DataTable ToDataTable<T>(IList<T> data)

PropertyDescriptorCollection props =
TypeDescriptor.GetProperties(typeof(T));
DataTable table = new DataTable();
for (int i = 0; i < props.Count; i++)

PropertyDescriptor prop = props[i];
table.Columns.Add(prop.Name, prop.PropertyType);

object[] values = new object[props.Count];
foreach (T item in data)

for (int i = 0; i < values.Length; i++)

values[i] = props[i].GetValue(item);

table.Rows.Add(values);

return table;




Your DataTable would look something like this:



enter image description here



Edit Description:
I have created a model only to show your required data into the DataTable. Since I have parsed the JSON data into my C# list, I can access the data shown in my code using foreach loop. Then I simply get the data what I required and then create my Data Table.



Cheers.






share|improve this answer















Ok so here is the code to parse your JSON structure into a C# List. Once you have this list, you can convert it to a DataTable using the methods that you have researched. I have created a sample Data Table based on your JSON structure.



Your model would be:



public class JsonInfo

public string uuid get; set;
public string call_start_time get; set;
public string call_duration get; set;
public string created_on get; set;
public string cost get; set;
public string call_type get; set;
public string answered get; set;
public string has_recording get; set;
public string call_route get; set;
public string is_fax get; set;
public From from get; set;
public To to get; set;
public AnsweredBy answered_by get; set;


public class From

public string uuid get; set;
public string type get; set;
public string name get; set;
public string nickname get; set;
public string number get; set;


public class To

public string uuid get; set;
public string type get; set;
public string name get; set;
public string nickname get; set;
public string number get; set;


public class AnsweredBy

public string uuid get; set;
public string type get; set;
public string name get; set;
public string nickname get; set;
public string number get; set;

//Create a model to show your information
public class DisplayJsonInfo

public string uuid get; set;
public string call_start_time get; set;
public string call_duration get; set;
public string created_on get; set;
public string cost get; set;
public string from_uuid get; set;
public string from_type get; set;
public string from_name get; set;
public string from_nickname get; set;



To serialize your JSON into created Model and then create your DataTable:



var json = "["uuid":"af9fcfc7-61af-4484-aaa8-7dhcced2f2f79","call_start_time":1551892096171,"call_duration":1150,"created_on":"2019-03-06","cost":0,"call_type":"inbound","from":"uuid":"","type":"number","name":"","nickname":"","number":"+44 7*** ******","to":"uuid":"","type":"number","name":"","nickname":"","number":"+44 **** ******0","answered":true,"answered_by":"uuid":"48bj949-e72e-4239-a337-e181a1b45841","type":"sipuser","name":"SipUser","nickname":"Myself","number":"1001","has_recording":true,"call_route":"c30e45g0e-3da4-4a67-9a04-27e1d9d31129","is_fax":false,"uuid":"f62kmop2b-f929-4afc-8c05-a8c1bc43225d","call_start_time":1551890795202,"call_duration":12,"created_on":"2019-03-06","cost":0.012,"call_type":"outbound","from":"uuid":"68a50328-f5b0-4c5e-837c-667ea50878f3","type":"sipuser","name":"Spare","nickname":"Spare","number":"1011","to":"uuid":"","type":"number","name":"","nickname":"","number":"+44 *** *** ****","answered":true,"answered_by":"uuid":"","type":"number","name":"","nickname":"","number":"+44 ***1*****0","has_recording":false,"call_route":"","is_fax":false,"uuid":"b1b495c4-ecf6-44c0-8020-28c9eddc7afe","call_start_time":1551890780607,"call_duration":10,"created_on":"2019-03-06","cost":0.012,"call_type":"outbound","from":"uuid":"68a50328-f5b0-4c5e-837c-667ea50878f3","type":"sipuser","name":"Spare","nickname":"Spare","number":"1011","to":"uuid":"","type":"number","name":"","nickname":"","number":"+44 *** *** ****","answered":true,"answered_by":"uuid":"","type":"number","name":"","nickname":"","number":"+44 *** *** ****","has_recording":false,"call_route":"","is_fax":false]";
var data = JsonConvert.DeserializeObject<List<JsonInfo>>(json);
//Call your helper method to convert
CreateDataTable cl = new CreateDataTable();
DataTable dt = new DataTable();
DisplayJsonInfo show = new DisplayJsonInfo();
List<DisplayJsonInfo> showInfo = new List<DisplayJsonInfo>();

foreach(var value in data)

showInfo.Add(new DisplayJsonInfo

call_duration = value.call_duration,
call_start_time = value.call_start_time,
cost = value.cost,
uuid = value.uuid,
created_on = value.created_on,
from_uuid = value.from.uuid,
from_name = value.from.name,
from_type = value.from.type,
from_nickname=value.from.nickname
);

dt = cl.ToDataTable(showInfo);


Once you have this use a helper extension like ToDataTable() as mentioned here: Convert JSON to DataTable



Edit:



So after parsing out the information and using this helper to convert your List to DataTable:



using System;
using System.Text;
using System.IO;
using System.Configuration;
using System.Data;
using System.Collections.Generic;
using System.ComponentModel;

public class CreateDataTable

public DataTable ToDataTable<T>(IList<T> data)

PropertyDescriptorCollection props =
TypeDescriptor.GetProperties(typeof(T));
DataTable table = new DataTable();
for (int i = 0; i < props.Count; i++)

PropertyDescriptor prop = props[i];
table.Columns.Add(prop.Name, prop.PropertyType);

object[] values = new object[props.Count];
foreach (T item in data)

for (int i = 0; i < values.Length; i++)

values[i] = props[i].GetValue(item);

table.Rows.Add(values);

return table;




Your DataTable would look something like this:



enter image description here



Edit Description:
I have created a model only to show your required data into the DataTable. Since I have parsed the JSON data into my C# list, I can access the data shown in my code using foreach loop. Then I simply get the data what I required and then create my Data Table.



Cheers.







share|improve this answer














share|improve this answer



share|improve this answer








edited Mar 6 at 22:35

























answered Mar 6 at 21:35









Rahul SharmaRahul Sharma

1399




1399












  • Thanks for the help, however there still seems to be a slight issue. I'm still not getting details about the 'from' and 'to' parts of the JSON. I am however getting columns called 'from' and 'to' which is further than what I was before.

    – Flakie
    Mar 6 at 21:56











  • I do not quite understand what you mean here? In your model, the To, From and AnsweredBy are objects that have data in them parsed during deserialization. You would need to handle their data and display in your DataTable.

    – Rahul Sharma
    Mar 6 at 21:58











  • That DataTable that you have in your edit is exactly what I got. What I need is that DataTable to contain infomation about the from/number and answered_by/number. I think this website will show best my intentions konklone.io/json. You say I need to handle my Data and Display in my DataTable. I'm not too sure what you mean by this

    – Flakie
    Mar 6 at 22:14












  • Please check updated answer to match your requirements. Please let me know if it suffices to your need. Thanks

    – Rahul Sharma
    Mar 6 at 22:36











  • That's perfect! That is exactly what I need. Apologies for the abundance of C# knowledge, this was definitely a learning curve for myself

    – Flakie
    Mar 6 at 22:48

















  • Thanks for the help, however there still seems to be a slight issue. I'm still not getting details about the 'from' and 'to' parts of the JSON. I am however getting columns called 'from' and 'to' which is further than what I was before.

    – Flakie
    Mar 6 at 21:56











  • I do not quite understand what you mean here? In your model, the To, From and AnsweredBy are objects that have data in them parsed during deserialization. You would need to handle their data and display in your DataTable.

    – Rahul Sharma
    Mar 6 at 21:58











  • That DataTable that you have in your edit is exactly what I got. What I need is that DataTable to contain infomation about the from/number and answered_by/number. I think this website will show best my intentions konklone.io/json. You say I need to handle my Data and Display in my DataTable. I'm not too sure what you mean by this

    – Flakie
    Mar 6 at 22:14












  • Please check updated answer to match your requirements. Please let me know if it suffices to your need. Thanks

    – Rahul Sharma
    Mar 6 at 22:36











  • That's perfect! That is exactly what I need. Apologies for the abundance of C# knowledge, this was definitely a learning curve for myself

    – Flakie
    Mar 6 at 22:48
















Thanks for the help, however there still seems to be a slight issue. I'm still not getting details about the 'from' and 'to' parts of the JSON. I am however getting columns called 'from' and 'to' which is further than what I was before.

– Flakie
Mar 6 at 21:56





Thanks for the help, however there still seems to be a slight issue. I'm still not getting details about the 'from' and 'to' parts of the JSON. I am however getting columns called 'from' and 'to' which is further than what I was before.

– Flakie
Mar 6 at 21:56













I do not quite understand what you mean here? In your model, the To, From and AnsweredBy are objects that have data in them parsed during deserialization. You would need to handle their data and display in your DataTable.

– Rahul Sharma
Mar 6 at 21:58





I do not quite understand what you mean here? In your model, the To, From and AnsweredBy are objects that have data in them parsed during deserialization. You would need to handle their data and display in your DataTable.

– Rahul Sharma
Mar 6 at 21:58













That DataTable that you have in your edit is exactly what I got. What I need is that DataTable to contain infomation about the from/number and answered_by/number. I think this website will show best my intentions konklone.io/json. You say I need to handle my Data and Display in my DataTable. I'm not too sure what you mean by this

– Flakie
Mar 6 at 22:14






That DataTable that you have in your edit is exactly what I got. What I need is that DataTable to contain infomation about the from/number and answered_by/number. I think this website will show best my intentions konklone.io/json. You say I need to handle my Data and Display in my DataTable. I'm not too sure what you mean by this

– Flakie
Mar 6 at 22:14














Please check updated answer to match your requirements. Please let me know if it suffices to your need. Thanks

– Rahul Sharma
Mar 6 at 22:36





Please check updated answer to match your requirements. Please let me know if it suffices to your need. Thanks

– Rahul Sharma
Mar 6 at 22:36













That's perfect! That is exactly what I need. Apologies for the abundance of C# knowledge, this was definitely a learning curve for myself

– Flakie
Mar 6 at 22:48





That's perfect! That is exactly what I need. Apologies for the abundance of C# knowledge, this was definitely a learning curve for myself

– Flakie
Mar 6 at 22:48



















draft saved

draft discarded
















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55031974%2fcomplex-nested-json-array-conversion-to-datatable-c-sharp%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Save data to MySQL database using ExtJS and PHP [closed]2019 Community Moderator ElectionHow can I prevent SQL injection in PHP?Which MySQL data type to use for storing boolean valuesPHP: Delete an element from an arrayHow do I connect to a MySQL Database in Python?Should I use the datetime or timestamp data type in MySQL?How to get a list of MySQL user accountsHow Do You Parse and Process HTML/XML in PHP?Reference — What does this symbol mean in PHP?How does PHP 'foreach' actually work?Why shouldn't I use mysql_* functions in PHP?

Compiling GNU Global with universal-ctags support Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern) Data science time! April 2019 and salary with experience The Ask Question Wizard is Live!Tags for Emacs: Relationship between etags, ebrowse, cscope, GNU Global and exuberant ctagsVim and Ctags tips and trickscscope or ctags why choose one over the other?scons and ctagsctags cannot open option file “.ctags”Adding tag scopes in universal-ctagsShould I use Universal-ctags?Universal ctags on WindowsHow do I install GNU Global with universal ctags support using Homebrew?Universal ctags with emacsHow to highlight ctags generated by Universal Ctags in Vim?

Add ONERROR event to image from jsp tldHow to add an image to a JPanel?Saving image from PHP URLHTML img scalingCheck if an image is loaded (no errors) with jQueryHow to force an <img> to take up width, even if the image is not loadedHow do I populate hidden form field with a value set in Spring ControllerStyling Raw elements Generated from JSP tagds with Jquery MobileLimit resizing of images with explicitly set width and height attributeserror TLD use in a jsp fileJsp tld files cannot be resolved