Does the dialect support an exists statement in the select clause?

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

Syntax

C#
public virtual bool SupportsExistsInSelect { get; }
Visual Basic
Public Overridable ReadOnly Property SupportsExistsInSelect As Boolean
	Get
Visual C++
public:
virtual property bool SupportsExistsInSelect {
	bool get ();
}

Return Value

True if exists checks are allowed in the select clause; false otherwise.

See Also