Are subselects supported as the left-hand-side (LHS) of
IN-predicates.
In other words, is syntax like "... {subquery} IN (1, 2, 3) ..." supported?
Namespace: NHibernate.DialectAssembly: NHibernate (in NHibernate.dll) Version: 3.2.0.4000 (3.2.0.4000)
Syntax
| C# |
|---|
public virtual bool SupportsSubselectAsInPredicateLHS { get; } |
| Visual Basic |
|---|
Public Overridable ReadOnly Property SupportsSubselectAsInPredicateLHS As Boolean
Get |
| Visual C++ |
|---|
public:
virtual property bool SupportsSubselectAsInPredicateLHS {
bool get ();
} |
Return Value
True if subselects can appear as the LHS of an in-predicate;false otherwise.
See Also