FilterClause(SingleValueNode, RangeVariable) Constructor

Definition

Creates a FilterClause.

public FilterClause (Microsoft.OData.UriParser.SingleValueNode expression, Microsoft.OData.UriParser.RangeVariable rangeVariable);
new Microsoft.OData.UriParser.FilterClause : Microsoft.OData.UriParser.SingleValueNode * Microsoft.OData.UriParser.RangeVariable -> Microsoft.OData.UriParser.FilterClause
Public Sub New (expression As SingleValueNode, rangeVariable As RangeVariable)

Parameters

expression
SingleValueNode

The filter expression - this should evaluate to a single boolean value. Cannot be null.

rangeVariable
RangeVariable

The parameter for the expression which represents a single value from the collection. Cannot be null.

Exceptions

Throws if the input expression or rangeVariable is null.

Applies to