Constructs a new ExprLookup.

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

Syntax

C#
public ExprLookup(
	string tableName,
	string fieldName,
	LookupList lList
)
Visual Basic
Public Sub New ( _
	tableName As String, _
	fieldName As String, _
	lList As LookupList _
)
Visual C++
public:
ExprLookup(
	String^ tableName, 
	String^ fieldName, 
	LookupList^ lList
)

Parameters

tableName
Type: System..::..String
The name of the table. Note that the table names NavStateRecords and AllBaseRecords are reserved and therefore cannot be specified.
fieldName
Type: System..::..String
A derived property of the table specified by tableName.
lList
Type: Endeca.Navigation.Analytics..::..LookupList
A LookupList object that has been populated with lookup expressions (IExpr objects). The LookupList represents a list of expressions that evaluate to a list of values that uniquely identify a record in the table.

See Also