Constructs a new Select.

Namespace: Endeca.Navigation.Analytics
Assembly: Endeca.Navigation (in Endeca.Navigation.dll) Version: 6.2.0.0 (0.0.0.0)

Syntax

C#
public Select(
	string field,
	IExpr expr
)
Visual Basic
Public Sub New ( _
	field As String, _
	expr As IExpr _
)
Visual C++
public:
Select(
	String^ field, 
	IExpr^ expr
)

Parameters

field
Type: System..::..String
The name of the derived property that this Select should produce.
expr
Type: Endeca.Navigation.Analytics..::..IExpr
The derived property expression as an object of type IExpr.

Remarks

The new Select will associate the result of expr with the derived property named field.

See Also