TableOperation.Retrieve メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
オーバーロード
Retrieve(String, String, List<String>) |
テーブル内の指定されたエンティティの内容を取得する新しいテーブル操作を作成します。 |
Retrieve<TElement>(String, String, List<String>) |
テーブル内の指定されたエンティティの内容を取得する新しいテーブル操作を作成します。 |
Retrieve<TResult>(String, String, EntityResolver<TResult>, List<String>) |
テーブル内の指定されたエンティティの内容を取得する新しいテーブル操作を作成します。 |
Retrieve(String, String, List<String>)
テーブル内の指定されたエンティティの内容を取得する新しいテーブル操作を作成します。
public static Microsoft.Azure.Cosmos.Table.TableOperation Retrieve (string partitionKey, string rowkey, System.Collections.Generic.List<string> selectedColumns = default);
static member Retrieve : string * string * System.Collections.Generic.List<string> -> Microsoft.Azure.Cosmos.Table.TableOperation
Public Shared Function Retrieve (partitionKey As String, rowkey As String, Optional selectedColumns As List(Of String) = Nothing) As TableOperation
パラメーター
- partitionKey
- String
取得するエンティティのパーティション キーを表す文字列です。
- rowkey
- String
取得するエンティティの行キーを表す文字列です。
戻り値
TableOperation オブジェクト。
適用対象
Retrieve<TElement>(String, String, List<String>)
テーブル内の指定されたエンティティの内容を取得する新しいテーブル操作を作成します。
public static Microsoft.Azure.Cosmos.Table.TableOperation Retrieve<TElement> (string partitionKey, string rowkey, System.Collections.Generic.List<string> selectColumns = default) where TElement : Microsoft.Azure.Cosmos.Table.ITableEntity;
static member Retrieve : string * string * System.Collections.Generic.List<string> -> Microsoft.Azure.Cosmos.Table.TableOperation (requires 'Element :> Microsoft.Azure.Cosmos.Table.ITableEntity)
Public Shared Function Retrieve(Of TElement As ITableEntity) (partitionKey As String, rowkey As String, Optional selectColumns As List(Of String) = Nothing) As TableOperation
型パラメーター
- TElement
取得するエンティティの種類のクラスです。
パラメーター
- partitionKey
- String
取得するエンティティのパーティション キーを表す文字列です。
- rowkey
- String
取得するエンティティの行キーを表す文字列です。
戻り値
TableOperation オブジェクト。
適用対象
Retrieve<TResult>(String, String, EntityResolver<TResult>, List<String>)
テーブル内の指定されたエンティティの内容を取得する新しいテーブル操作を作成します。
public static Microsoft.Azure.Cosmos.Table.TableOperation Retrieve<TResult> (string partitionKey, string rowkey, Microsoft.Azure.Cosmos.Table.EntityResolver<TResult> resolver, System.Collections.Generic.List<string> selectedColumns = default);
static member Retrieve : string * string * Microsoft.Azure.Cosmos.Table.EntityResolver<'Result> * System.Collections.Generic.List<string> -> Microsoft.Azure.Cosmos.Table.TableOperation
Public Shared Function Retrieve(Of TResult) (partitionKey As String, rowkey As String, resolver As EntityResolver(Of TResult), Optional selectedColumns As List(Of String) = Nothing) As TableOperation
型パラメーター
- TResult
指定された EntityResolver<T> によって、指定されたエンティティが解決される戻り値の型です。
パラメーター
- partitionKey
- String
取得するエンティティのパーティション キーを表す文字列です。
- rowkey
- String
取得するエンティティの行キーを表す文字列です。
- resolver
- EntityResolver<TResult>
結果で取得するエンティティを特定の型として射影する EntityResolver<T> 実装です。
戻り値
TableOperation オブジェクト。
適用対象
Azure SDK for .NET