Hello,
I hope you can help me with this. I have an SQL Server view (columns Status and Summary). The Status column has JSON array data in the column.
Status Summary
{ "ID": 1 , "StatusName": "Active"} Problem Description 1
{ "ID": 2 , "StatusName": "Closed"} Problem Description 2
{ "ID": 3 , "StatusName": "In Progress"} Problem Description 3
How can I get the data in this format in the collection, so I chart the data?
Status Summary
Active Problem Description 1
Closed Problem Description 2
In Progress Problem Description 3
Thank you so much!