У меня есть этот JSON:
[
{
"ParentReasonId": 2,
"ParentReason": "Violent or repulsive content",
"ReasonId": 15,
"Reason": "Adults fighting"
},
{
"ParentReasonId": 2,
"ParentReason": "Violent or repulsive content",
"ReasonId": 16,
"Reason": "Physical attack"
}
]
С помощью приложений логики Azure я пытаюсь преобразовать массив в json из двух массивов:
{
"categories": [
{
"categoryId": 2,
"category": "Violent or repulsive content"
}
],
"reasons": [
{
"categoryId": 2,
"reasonId": 15,
"reason": "Adults fighting"
},
{
"categoryId": 2,
"reasonId": 16,
"reason": "Physical attack"
}
]
}
Как мне этого добитьсяиспользуя приложения Azure Logic?Данные поступают от действия хранимой процедуры sql.