DSAzure.TAzureTableService.MergeEntity
[–] Properties | |
---|---|
Type: function | |
Visibility: public | |
Source: DSAzure.pas DSAzure.hpp
| |
Unit: DSAzure | |
Parent: TAzureTableService |
Delphi
function MergeEntity(const TableName: String; entity: TJSONObject): boolean;
C++
bool __fastcall MergeEntity(const System::UnicodeString TableName, System::Json::TJSONObject* entity);
Description
Updates an existing row, modifying column values.
MergeEntity allows for modifying column values for an existing row. It is similar to UpdateEntity, but with MergeEntity a merge is done between the old column values and the new ones. Columns cannot be removed with this call. For that, UpdateEntity should be used instead.