If the dialect supports {@link #supportsRowValueConstructorSyntax() row values},
does it offer such support in IN lists as well?
For example, "... where (FIRST_NAME, LAST_NAME) IN ( (?, ?), (?, ?) ) ..."
Namespace: NHibernate.DialectAssembly: NHibernate (in NHibernate.dll) Version: 3.2.0.4000 (3.2.0.4000)
Syntax
C# |
---|
public virtual bool SupportsRowValueConstructorSyntaxInInList { get; } |
Visual Basic |
---|
Public Overridable ReadOnly Property SupportsRowValueConstructorSyntaxInInList As Boolean
Get |
Visual C++ |
---|
public:
virtual property bool SupportsRowValueConstructorSyntaxInInList {
bool get ();
} |
Return Value
True if this SQL dialect is known to support "row value
constructor" syntax in the IN list; false otherwise.
See Also