Does the LIMIT clause specify arguments in the "reverse" order limit, offset instead of offset, limit?

Namespace:  NHibernate.Dialect
Assembly:  NHibernate (in NHibernate.dll)

Syntax

Visual Basic (Declaration)
Public Overridable ReadOnly Property BindLimitParametersInReverseOrder As Boolean
C#
public virtual bool BindLimitParametersInReverseOrder { get; }
Visual C++
public:
virtual property bool BindLimitParametersInReverseOrder {
	bool get ();
}
JavaScript
function get_bindLimitParametersInReverseOrder();

Field Value

False, unless overridden.

Remarks

Inheritors should return true if the correct order is limit, offset

See Also