Azure Logic App toLower字符串函数未知

时间:2018-01-10 15:30:40

标签: dynamics-crm azure-logic-apps

字符串函数的文档是否已过期,因为当我尝试使用toLower()时,我得到了

"An unknown function with name 'toLower' was found. This may also be a function import or a key lookup on a navigation property, which is not allowed"

我正在尝试构建一个OData过滤器来查询Dynamics(CRM) - 这是代码:

"queries": {"$filter": "concat('hat_',toLower('@{body('Get_record_(Preview)')?['hat_fundname']}')) eq true "}

1 个答案:

答案 0 :(得分:1)

我认为正确的语法是:

@concat('hat_', toLower(body('Get_record_(Preview)')?['hat_fundname']))