I am facing problem to sort an multiple object with nested property(Price)
{
"EI":[
{
"offerid":"1S-EI-715",
"Price":"30.00"
},
{
"offerid":"1S-IB-518",
"Price":"20.00"
}
],
"IB":[
{
"offerid":"1S-IB-518",
"Price":"10.00"
},
{
"offerid":"1S-IB-518",
"Price":"40.00"
}
]}
I need to sort the price like below. Is it possible to sort like that. Kindly give some solution for this. Thanks in advance
{
"IB":[
{
"offerid":"1S-IB-518",
"Price":"10.00"
},
{
"offerid":"1S-IB-518",
"Price":"40.00"
}
]
"EI":[
{
"offerid":"1S-IB-518",
"Price":"20.00"
}
{
"offerid":"1S-EI-715",
"Price":"30.00"
},
]}