如何添加参数以在 Azure 数据工厂查找中针对 Table 存储进行查询
How to add parameter to query in Azure Data Factory Lookup against Table Storage
我正在尝试在 ADF 中创建一个管道,以从 Table 存储中的数据中提取数据,其中值与参数匹配。
如果我对值进行硬编码,查询就会运行,并且我可以看到数据
查询:
RowKey eq 'Brand' and Value eq 'Brand1'
我添加了一个名为品牌的参数。
我希望以下方法有效:
查询:
RowKey eq 'Brand' and Value eq @pipeline().parameters.brand
请试试这个表达式:
RowKey eq 'Brand' and Value eq '@{pipeline().parameters.brand}'
这样,ADF就会把参数解析成字符串。
我为此创建了一个简单的测试
RowKey eq '@{pipeline().parameters.RowKeyStr}'
在“查询”字段中输入表达式:
我正在尝试在 ADF 中创建一个管道,以从 Table 存储中的数据中提取数据,其中值与参数匹配。
如果我对值进行硬编码,查询就会运行,并且我可以看到数据
查询:
RowKey eq 'Brand' and Value eq 'Brand1'
我添加了一个名为品牌的参数。
我希望以下方法有效:
查询:
RowKey eq 'Brand' and Value eq @pipeline().parameters.brand
请试试这个表达式:
RowKey eq 'Brand' and Value eq '@{pipeline().parameters.brand}'
这样,ADF就会把参数解析成字符串。
我为此创建了一个简单的测试
RowKey eq '@{pipeline().parameters.RowKeyStr}'
在“查询”字段中输入表达式: