标签: json azure-logic-apps azure-cosmosdb-sqlapi
我正在尝试使用LogicApp在我的CosmosDB项目中添加新对象。
{ "id": "1000", "phone": "55512341212" }
到
{ "id": "1000", "phone": "55512341212"', "name":"David" }
答案 0 :(得分:1)
Cosmos DB当前无法进行部分更新。您必须使用ReplaceItemAsync()或UpsertItemAsync()写回整个记录。