Share via


TableQuery<TElement>.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<TElement> Where (string filter);
member this.Where : string -> Microsoft.Azure.Cosmos.Table.TableQuery<'Element>
Public Function Where (filter As String) As TableQuery(Of TElement)

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