TableClient.CreateQueryFilter Method

Definition

Overloads

CreateQueryFilter(FormattableString)

Create an OData filter expression from an interpolated string. The interpolated values will be quoted and escaped as necessary.

CreateQueryFilter<T>(Expression<Func<T,Boolean>>)

Creates an OData filter query string from the provided expression.

CreateQueryFilter(FormattableString)

Source:
TableClient.cs

Create an OData filter expression from an interpolated string. The interpolated values will be quoted and escaped as necessary.

public static string CreateQueryFilter (FormattableString filter);
static member CreateQueryFilter : FormattableString -> string
Public Shared Function CreateQueryFilter (filter As FormattableString) As String

Parameters

filter
FormattableString

An interpolated filter string.

Returns

A valid OData filter expression.

Applies to

CreateQueryFilter<T>(Expression<Func<T,Boolean>>)

Source:
TableClient.cs

Creates an OData filter query string from the provided expression.

public static string CreateQueryFilter<T> (System.Linq.Expressions.Expression<Func<T,bool>> filter);
static member CreateQueryFilter : System.Linq.Expressions.Expression<Func<'T, bool>> -> string
Public Shared Function CreateQueryFilter(Of T) (filter As Expression(Of Func(Of T, Boolean))) As String

Type Parameters

T

The type of the entity being queried. Typically this will be derived from ITableEntity or Dictionary<TKey,TValue>.

Parameters

filter
Expression<Func<T,Boolean>>

A filter expression.

Returns

The string representation of the filter expression.

Applies to