Hello,
I have a json in the below format:
{
“CaseData”:{“id”:1234, “name”:“abc”},
“RawData”:{“date”:“1-1-2025”,“updatedBy”:“xyz”}
}
I am converting the “CaseData” property of the json using Linq and using it as a datasource, below is the expression used in data source of Table control:
AppsDataSource.from(
Newtonsoft.Json.Linq.JObject.Parse(ActionProperties.FullJson) _
.SelectToken(“DenialInformation”) _
.ToObject(Of System.Collections.Generic.Dictionary(Of String, Object))() _
.ToArray()
)
Now, I want to bind the Key & Value to the columns of table, kindly advise how I can do this.