Forum Discussion
Bikram425
Oct 23, 2023Copper Contributor
Azure data flow find complex object
I have a complex json object as below. I want to use Azure data flow to find the string Vehicle.Vin value which have Vehicle.Model = “AUDI”.
I tried with find method, but it expects me to pass both vin & Model for the comparison. Can you please suggest?
https://learn.microsoft.com/en-us/azure/data-factory/data-flow-expressions-usage#find
{
“Vehicles”: [
{“vin”: “1234556”,
“Model”: “BMW”},
{“vin”: “xyz”,
“Model”: “AUDI”},
]
}
No RepliesBe the first to reply