Sorting JSON array by date

@thotlamahesh_kumar ,

Not tested but can you try this one

' Assume you have a JSON string stored in a variable named jsonString
Dim jsonArray As JArray = JArray.Parse(jsonString)
Dim sortedArray As JArray = JArray.FromObject(jsonArray.OrderByDescending(Function(x) DateTime.Parse(x("loggedDate").ToString())).ToList())