TableServiceClient.QueryAsync Método
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Sobrecargas
QueryAsync(FormattableString, Nullable<Int32>, CancellationToken) |
Obtém uma lista de tabelas da conta de armazenamento. |
QueryAsync(Expression<Func<TableItem,Boolean>>, Nullable<Int32>, CancellationToken) |
Obtém uma lista de tabelas da conta de armazenamento. |
QueryAsync(String, Nullable<Int32>, CancellationToken) |
Obtém uma lista de tabelas da conta de armazenamento. |
QueryAsync(FormattableString, Nullable<Int32>, CancellationToken)
- Origem:
- TableServiceClient.cs
Obtém uma lista de tabelas da conta de armazenamento.
public virtual Azure.AsyncPageable<Azure.Data.Tables.Models.TableItem> QueryAsync (FormattableString filter, int? maxPerPage = default, System.Threading.CancellationToken cancellationToken = default);
abstract member QueryAsync : FormattableString * Nullable<int> * System.Threading.CancellationToken -> Azure.AsyncPageable<Azure.Data.Tables.Models.TableItem>
override this.QueryAsync : FormattableString * Nullable<int> * System.Threading.CancellationToken -> Azure.AsyncPageable<Azure.Data.Tables.Models.TableItem>
Public Overridable Function QueryAsync (filter As FormattableString, Optional maxPerPage As Nullable(Of Integer) = Nothing, Optional cancellationToken As CancellationToken = Nothing) As AsyncPageable(Of TableItem)
Parâmetros
- filter
- FormattableString
Retorna apenas tabelas que atendem à expressão de filtro especificada.
Por exemplo, o seguinte filtraria tabelas com um Nome de 'foo': "TableName eq {someStringVariable}"
.
A cadeia de caracteres de filtro será corretamente entre aspas e escape.
O número máximo de entidades que serão retornadas por página. Observação: esse valor não limitará o número total de resultados se o resultado for totalmente enumerado.
- cancellationToken
- CancellationToken
Um CancellationToken que controla o tempo de vida da solicitação.
Retornos
Um AsyncPageable<T> que contém uma coleção de TableItems.
Exceções
O servidor retornou um erro. Consulte Message para obter detalhes retornados do servidor.
Aplica-se a
QueryAsync(Expression<Func<TableItem,Boolean>>, Nullable<Int32>, CancellationToken)
- Origem:
- TableServiceClient.cs
Obtém uma lista de tabelas da conta de armazenamento.
public virtual Azure.AsyncPageable<Azure.Data.Tables.Models.TableItem> QueryAsync (System.Linq.Expressions.Expression<Func<Azure.Data.Tables.Models.TableItem,bool>> filter, int? maxPerPage = default, System.Threading.CancellationToken cancellationToken = default);
abstract member QueryAsync : System.Linq.Expressions.Expression<Func<Azure.Data.Tables.Models.TableItem, bool>> * Nullable<int> * System.Threading.CancellationToken -> Azure.AsyncPageable<Azure.Data.Tables.Models.TableItem>
override this.QueryAsync : System.Linq.Expressions.Expression<Func<Azure.Data.Tables.Models.TableItem, bool>> * Nullable<int> * System.Threading.CancellationToken -> Azure.AsyncPageable<Azure.Data.Tables.Models.TableItem>
Public Overridable Function QueryAsync (filter As Expression(Of Func(Of TableItem, Boolean)), Optional maxPerPage As Nullable(Of Integer) = Nothing, Optional cancellationToken As CancellationToken = Nothing) As AsyncPageable(Of TableItem)
Parâmetros
- filter
- Expression<Func<TableItem,Boolean>>
Retorna apenas tabelas que atendem à expressão de filtro especificada.
Por exemplo, a expressão a seguir filtraria tabelas com um Nome de 'foo': e => e.Name == "foo"
.
O número máximo de entidades que serão retornadas por página. Observação: esse valor não limitará o número total de resultados se o resultado for totalmente enumerado.
- cancellationToken
- CancellationToken
Um CancellationToken que controla o tempo de vida da solicitação.
Retornos
Um AsyncPageable<T> que contém uma coleção de TableItems.
Exceções
O servidor retornou um erro. Consulte Message para obter detalhes retornados do servidor.
Aplica-se a
QueryAsync(String, Nullable<Int32>, CancellationToken)
- Origem:
- TableServiceClient.cs
Obtém uma lista de tabelas da conta de armazenamento.
public virtual Azure.AsyncPageable<Azure.Data.Tables.Models.TableItem> QueryAsync (string filter = default, int? maxPerPage = default, System.Threading.CancellationToken cancellationToken = default);
abstract member QueryAsync : string * Nullable<int> * System.Threading.CancellationToken -> Azure.AsyncPageable<Azure.Data.Tables.Models.TableItem>
override this.QueryAsync : string * Nullable<int> * System.Threading.CancellationToken -> Azure.AsyncPageable<Azure.Data.Tables.Models.TableItem>
Public Overridable Function QueryAsync (Optional filter As String = Nothing, Optional maxPerPage As Nullable(Of Integer) = Nothing, Optional cancellationToken As CancellationToken = Nothing) As AsyncPageable(Of TableItem)
Parâmetros
- filter
- String
Retorna apenas tabelas que atendem ao filtro especificado.
Por exemplo, o seguinte filtraria tabelas com um Nome de 'foo': "TableName eq 'foo'"
.
O número máximo de tabelas que serão retornadas por página. Observação: esse valor não limitará o número total de resultados se o resultado for totalmente enumerado.
- cancellationToken
- CancellationToken
Um CancellationToken que controla o tempo de vida da solicitação.
Retornos
Um AsyncPageable<T> que contém uma coleção de TableItems.
Aplica-se a
Azure SDK for .NET