Data.Cloud.AzureAPI.TAzureTableService.QueryEntity
Delphi
function QueryEntity(const TableName: string; const PartitionKey: string; const RowKey: string;
ResponseInfo: TCloudResponseInfo = nil): TCloudTableRow; overload;
C++
Data::Cloud::Cloudapi::TCloudTableRow* __fastcall QueryEntity(const System::UnicodeString TableName, const System::UnicodeString PartitionKey, const System::UnicodeString RowKey, Data::Cloud::Cloudapi::TCloudResponseInfo* ResponseInfo = (Data::Cloud::Cloudapi::TCloudResponseInfo*)(0x0))/* overload */;
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
function | public | Data.Cloud.AzureAPI.pas Data.Cloud.AzureAPI.hpp |
Data.Cloud.AzureAPI | TAzureTableService |
Description
Returns the entity (row) for the specified table with the given partition and row keys.
The QueryEntity method returns the entity (row) for the specified table with the given partition and row keys. QueryEntity returns nil if the table row matching the specified parameters is not found.
Note: The unique key of any Azure table row is comprised of both the
PartitionKey
andRowKey
.
The TableName
parameter specifies the name of the table to get the row from.
The PartitionKey
parameter specifies the value of the partition key in the row you want to get.
The RowKey
parameter specifies the value of the row key in the row you want to get.
The ResponseInfo
parameter specifies the optional class where to store response info.