DSAzure.TAzureTableService.DeleteEntity
| [–] Properties | |
|---|---|
| Type: function | |
| Visibility: public | |
| Source: DSAzure.pas DSAzure.hpp
| |
| Unit: DSAzure | |
| Parent: TAzureTableService | |
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);
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.