表存储-数据工厂中的动态查询

时间:2019-07-24 06:22:17

标签: azure azure-storage

在存储表中,我以YYYY-MM-DD-HH格式动态生成了PartitionKey。我需要在Data Factory Pipeline中查询这个

我需要这样的东西:

PartitionKey eq DateTime.Now.ToString("yyyyMMddHH")

有可能吗?谢谢...

1 个答案:

答案 0 :(得分:1)

您可以在ADF中使用formatDateTime动态date functions

enter image description here

测试:

配置:

enter image description here

输出:

enter image description here


更新:

对不起,我的回答不完整。我使用以下表达式找出了答案:

@concat('PartitionKey eq ''', variables('dateValue'),'''')

屏幕截图:

enter image description here

整个结构:

enter image description here

我从此链接中获得了一些线索,还为您提供了Azure Data Factory Expression Query for Copy activity