I am very new to json, please help me out! Suppose I have the following json object
{
"Table": "",
"Id": "",
"Column": [
{
"ColumnText": "",
"ColumnSqlName": ""
},
{
"ColumnText": "",
"ColumnSqlName": ""
}
]
}
I want to use asp.net to deserialize the above json, what is the best way to do this? Thanks!!!
