Creates a QueryExpression representing a database IN operation.

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

Syntax

C#
public QueryExpression In(
	params Object[] values
)
Visual Basic (Declaration)
Public Function In ( _
	ParamArray values As Object() _
) As QueryExpression

Parameters

values
Type: array< System..::.Object >[]()[]
The values on the right-hand side of the IN operation.

Return Value

A QueryExpression representing a database IN operation.

See Also