DSAzure.TAzureTableService.MergeEntity

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function MergeEntity(const TableName: String; entity: TJSONObject): boolean;

C++

bool __fastcall MergeEntity(const System::UnicodeString TableName, System::Json::TJSONObject* entity);

Properties

Type Visibility Source Unit Parent
function public
DSAzure.pas
DSAzure.hpp
DSAzure TAzureTableService

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.

See Also