Compartilhar via


TableClient.GetEntityIfExists<T> Método

Definição

Obtém a entidade de tabela especificada do tipo T.

public virtual Azure.NullableResponse<T> GetEntityIfExists<T> (string partitionKey, string rowKey, System.Collections.Generic.IEnumerable<string> select = default, System.Threading.CancellationToken cancellationToken = default) where T : class, Azure.Data.Tables.ITableEntity;
abstract member GetEntityIfExists : string * string * seq<string> * System.Threading.CancellationToken -> Azure.NullableResponse<'T (requires 'T : null and 'T :> Azure.Data.Tables.ITableEntity)> (requires 'T : null and 'T :> Azure.Data.Tables.ITableEntity)
override this.GetEntityIfExists : string * string * seq<string> * System.Threading.CancellationToken -> Azure.NullableResponse<'T (requires 'T : null and 'T :> Azure.Data.Tables.ITableEntity)> (requires 'T : null and 'T :> Azure.Data.Tables.ITableEntity)
Public Overridable Function GetEntityIfExists(Of T As {Class, ITableEntity}) (partitionKey As String, rowKey As String, Optional select As IEnumerable(Of String) = Nothing, Optional cancellationToken As CancellationToken = Nothing) As NullableResponse(Of T)

Parâmetros de tipo

T

Um tipo de modelo personalizado que implementa ITableEntity ou uma instância do TableEntity.

Parâmetros

partitionKey
String

A partitionKey que identifica a entidade de tabela.

rowKey
String

A rowKey que identifica a entidade de tabela.

select
IEnumerable<String>

Seleciona qual conjunto de propriedades de entidade retornar no conjunto de resultados. Passe null para recuperar todas as propriedades.

cancellationToken
CancellationToken

Um CancellationToken que controla o tempo de vida da solicitação.

Retornos

A NullableResponse<T> cuja HasValue propriedade retornará true se a entidade existir, caso contrário false, .

Exceções

Exceção gerada se ocorrer um erro inesperado.

partitionKey ou rowKey é nulo.

Aplica-se a