Sets a SQL function to be applied to this attribute.

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

Syntax

C#
public PathExpression Function(
	int thisPosition,
	string name,
	QueryExpression[] arguments
)
Visual Basic (Declaration)
Public Function Function ( _
	thisPosition As Integer, _
	name As String, _
	arguments As QueryExpression() _
) As PathExpression

Parameters

thisPosition
Type: System..::.Int32
The index at which this PathExpression will appear in the arguments to the SQL function.
name
Type: System..::.String
The native SQL name of the function.
arguments
Type: array< Mindscape.LightSpeed.Querying..::.QueryExpression >[]()[]
Arguments to be passed to the function.

Return Value

An expression representing the results of applying the function to this PathExpression.

See Also