Share via


TableQuery.Where(String) Method

Definition

Defines a filter expression for the table query. Only entities that satisfy the specified filter expression will be returned by the query.

public Microsoft.Azure.Cosmos.Table.TableQuery Where (string filter);
member this.Where : string -> Microsoft.Azure.Cosmos.Table.TableQuery
Public Function Where (filter As String) As TableQuery

Parameters

filter
String

A string containing the filter expression to apply to the table query.

Returns

A TableQuery instance set with the filter on entities to return.

Remarks

Setting a filter expression is optional; by default, all entities in the table are returned if no filter expression is specified in the table query.

Applies to