数据工厂数据流表达式与动态表达式
Data factory data flow expressions vs dynamic expressions
我试图在通配符路径数据流表达式中找到与此等效的方法。我在我的数据工厂动态查询中使用它
@concat( pipeline().parameters.source,
'/dirName/year=',
formatDateTime(utcnow(), 'yyyy'),
'/month=',
formatDateTime(utcnow(), 'MM'),
'/day=',
formatDateTime(utcnow(), 'dd')
)
我以为会是这样的
concat( $source,'/dirName/year=',toTimestamp(currentUTC(), 'YYYY', UTC),
'/month=',
toTimestamp(currentUTC(), 'MM', UTC),
'/day=',
toTimestamp(currentUTC(), 'dd', UTC)
)
我想做的是从使用 UTC 日期创建的 blob 路径获取
例子
blah/year=2021/月=07/日=05/.csv
像 toString(year(currentUTC())) 这样更简单的东西会更容易工作。或者没有 concat 的字符串插值也可以工作
"/dirName/year={年(currentUTC())}/月={月(currentUTC())}/日={日(currentUTC())}"
我试图在通配符路径数据流表达式中找到与此等效的方法。我在我的数据工厂动态查询中使用它
@concat( pipeline().parameters.source,
'/dirName/year=',
formatDateTime(utcnow(), 'yyyy'),
'/month=',
formatDateTime(utcnow(), 'MM'),
'/day=',
formatDateTime(utcnow(), 'dd')
)
我以为会是这样的
concat( $source,'/dirName/year=',toTimestamp(currentUTC(), 'YYYY', UTC),
'/month=',
toTimestamp(currentUTC(), 'MM', UTC),
'/day=',
toTimestamp(currentUTC(), 'dd', UTC)
)
我想做的是从使用 UTC 日期创建的 blob 路径获取 例子 blah/year=2021/月=07/日=05/.csv
像 toString(year(currentUTC())) 这样更简单的东西会更容易工作。或者没有 concat 的字符串插值也可以工作
"/dirName/year={年(currentUTC())}/月={月(currentUTC())}/日={日(currentUTC())}"