utcnow() 是逻辑应用支持的函数之一。
https://msdn.microsoft.com/en-US/library/azure/dn948512.aspx#functions
我尝试将它与来自 SQL 连接器的插入操作结合使用,以将数据插入表中。该表有一个日期时间字段,我想用工作流执行插入的日期/时间来填充该字段。我尝试了以下方法:
{@utcnow()}
这会导致以下错误:
"Error reading date. Unexpected token: StartObject. Path '', line 1, position 1."
和这个:
@utcnow()
这会导致以下错误:
"Error reading date. Unexpected token: Integer. Path '', line 1, position 1."
我希望这是一个愚蠢的格式问题,因为我对逻辑应用的工作流定义语言不是很熟悉。
谢谢!