Seeking guidance on json as a beginner! Let's consider the below json object:
{
"Table": "",
"Id": "",
"Column": [
{
"ColumnText": "",
"ColumnSqlName": ""
},
{
"ColumnText": "",
"ColumnSqlName": ""
}
]
}
I'm looking for assistance in deserializing this json using asp.net. What would be the most optimal approach? Appreciate any help!