Share via


TableQuery<TElement>.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<TElement> Select (System.Collections.Generic.IList<string> columns);
member this.Select : System.Collections.Generic.IList<string> -> Microsoft.Azure.Cosmos.Table.TableQuery<'Element>
Public Function Select (columns As IList(Of String)) As TableQuery(Of TElement)

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, and is used to limit the table properties returned from the server. By default, a query will return all properties from the table entity.

Applies to