Megosztás a következőn keresztül:


TableQuery.Select(IList<String>) Method

Definition

Defines the property names of the table entity properties to return when the table query is executed.

public Microsoft.Azure.Cosmos.Table.TableQuery Select (System.Collections.Generic.IList<string> columns);
member this.Select : System.Collections.Generic.IList<string> -> Microsoft.Azure.Cosmos.Table.TableQuery
Public Function Select (columns As IList(Of String)) As TableQuery

Parameters

columns
IList<String>

A list of string objects containing the property names of the table entity properties to return when the query is executed.

Returns

A TableQuery instance set with the table entity properties to return.

Remarks

The select clause is optional on a table query, used to limit the table properties returned from the server. By default, a query will return all properties from the table entity.

Applies to