Redigera

Dela via


AzureTableDataManager<T>.ReadAllTableEntriesForPartitionAsync Method

Definition

Read all entries in one partition of the storage table. NOTE: This could be an expensive and slow operation for large table partitions!

public System.Threading.Tasks.Task<System.Collections.Generic.IEnumerable<Tuple<T,string>>> ReadAllTableEntriesForPartitionAsync (string partitionKey);
member this.ReadAllTableEntriesForPartitionAsync : string -> System.Threading.Tasks.Task<seq<'T * string>>
Public Function ReadAllTableEntriesForPartitionAsync (partitionKey As String) As Task(Of IEnumerable(Of Tuple(Of T, String)))

Parameters

partitionKey
String

The key for the partition to be searched.

Returns

Enumeration of all entries in the specified table partition.

Applies to