The list of ordinal parameter locations.

Namespace: NHibernate.Engine.Query
Assembly: NHibernate (in NHibernate.dll) Version: 3.2.0.4000 (3.2.0.4000)

Syntax

C#
public List<int> OrdinalParameterLocationList { get; }
Visual Basic
Public ReadOnly Property OrdinalParameterLocationList As List(Of Integer)
	Get
Visual C++
public:
property List<int>^ OrdinalParameterLocationList {
	List<int>^ get ();
}

Remarks

The list elements are integers, representing the location for that given ordinal. Thus OrdinalParameterLocationList[n] represents the location for the nth parameter.

See Also