I have two arrays that have respectively contain keys and values:
array 1 ["key1", "key2", "key3"] and array 2 ["value1", "value2", "value3"]
With ADF data flow expression, I can construct a key-value map with these two arrays using keyValues function:
keyValues(["key1", "key2", "key3"],["value1", "value2", "value3"])
And this will return a result like this:
["key1" -> "value1", "key2" -> "value2", "key3" -> "value3"]
I want to construct the same key-value map within a pipeline, not data flow, but the keyValues function is not available in pipeline expression. How can I construct a key-value map with pipeline expression on Azure Data Factory / Synapse Studio?





