TableQuery.Select(IList<String>) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
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
Azure SDK for .NET