Adds a new QuerySubexpression to the collection.

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

Syntax

C#
public QuerySubexpression Add(
	string name,
	PathExpression path,
	string joinColumn
)
Visual Basic (Declaration)
Public Function Add ( _
	name As String, _
	path As PathExpression, _
	joinColumn As String _
) As QuerySubexpression

Parameters

name
Type: System..::.String
The name being assigned to the subexpression.
path
Type: Mindscape.LightSpeed.Querying..::.PathExpression
The subexpression.
joinColumn
Type: System..::.String
The attribute on which the subexpression is joined to the primary table being queried.

Return Value

A QuerySubexpression representing the new named subexpression.

See Also