Initializes a new instance of the PredicateExpression class.

Namespace:  Mindscape.LightSpeed.Querying
Assembly:  Mindscape.LightSpeed (in Mindscape.LightSpeed.dll)
Version: 4.0.0.0 (4.0.0.0)

Syntax

C#
public PredicateExpression(
	IdentifierExpression identifierExpression,
	RelationalOperator op
)
Visual Basic (Declaration)
Public Sub New ( _
	identifierExpression As IdentifierExpression, _
	op As RelationalOperator _
)

Parameters

identifierExpression
Type: Mindscape.LightSpeed.Querying..::.IdentifierExpression
An IdentifierExpression denoting the left hand side of the predicate expression.
op
Type: Mindscape.LightSpeed.Querying..::.RelationalOperator
The RelationalOperator of the predicate expression.

See Also