DSAzure.TAzureTableService.DeleteEntity

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function DeleteEntity(const TableName: String; const PartitionKey: String; const RowKey: String): boolean;

C++

bool __fastcall DeleteEntity(const System::UnicodeString TableName, const System::UnicodeString PartitionKey, const System::UnicodeString RowKey);

Properties

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

Description

Deletes a row from the given table.

DeleteEntity deletes the row from the given table with the matching PartitionKey and RowKey, which are two required row columns that are used to form a unique identifier for each row in the table.

See Also