使用 Logic App 在 Azure Table 中创建新实体时将值设置为整数

Set a value as integer when creating a new entity in Azure Table with Logic App

在 Azure Table 中使用逻辑应用程序创建新实体时,它们都以字符串变量结束。如何将我的价值计数器设置为整数?

{ "PartitionKey":"Phone", "Counter": "1", "RowKey": "1", "Name:"鲍勃” }

谢谢, 大卫

声明 JSON 有效负载,计数器值不用双引号。

{ "PartitionKey":"Phone", "Counter": 1, "RowKey": "1", "Name:"鲍勃" }