Data.Cloud.AzureAPI.TAzureTableService.QueryEntity

提供: RAD Studio API Documentation
移動先: 案内検索

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 */;

プロパティ

種類 可視性 ソース ユニット
function public
Data.Cloud.AzureAPI.pas
Data.Cloud.AzureAPI.hpp
Data.Cloud.AzureAPI TAzureTableService


説明

指定されたパーティションと行キーを持つ、指定されたテーブルのエンティティ(行)を返します。

QueryEntity メソッドは、指定されたパーティションと行キーを持つ、指定されたテーブルのエンティティ(行)を返します。 QueryEntity は、指定されたパラメータに一致するテーブル行が見つからない場合に、nil を返します。

メモ: Azure テーブル行の一意のキーは、PartitionKeyRowKey の両方から構築されます。

TableName パラメータは、行を取得するテーブルの名前を示します。

PartitionKey パラメータは、取得したい行内のパーティション キーの値を指定します。

RowKey パラメータは、取得したい行内の行キーの値を指定します。

ResponseInfo パラメータは、レスポンス情報を格納する任意クラスを示します。

関連項目