ADF映射数据流byNames表达式异常

问题描述

Azure数据工厂(ADF)映射数据流byNames表达式在派生的列块中引发异常。实际上,我需要在一个派生列中访问多个列值。

{{1}}

enter image description here

https://docs.microsoft.com/en-us/azure/data-factory/data-flow-expression-functions#bynames

解决方法

我尝试了该表达式,并得到相同的错误: enter image description here

仅从数据流开始,我们可以使用波纹管表达式来实现:

enter image description here

  1. array(byNames(['parent','child'])) enter image description here

  2. array(parent,child) enter image description here

toString函数只能将原始数据类型转换为字符串,我认为是导致错误的原因。