Creates a new LogicalExpression with the specified left and right hand sides and the specified logical operation.

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

Syntax

C#
public static QueryExpression Create(
	QueryExpression lhs,
	LogicalOperator op,
	QueryExpression rhs
)
Visual Basic (Declaration)
Public Shared Function Create ( _
	lhs As QueryExpression, _
	op As LogicalOperator, _
	rhs As QueryExpression _
) As QueryExpression

Return Value

A LogicalExpression representing the "and-ing" or "or-ing" of the left and right hand sides.

See Also