Is this dialect known to support what ANSI-SQL terms "row value
constructor" syntax; sometimes called tuple syntax.
Basically, does it support syntax like
"... where (FIRST_NAME, LAST_NAME) = ('Steve', 'Ebersole') ...".
Namespace: NHibernate.DialectAssembly: NHibernate (in NHibernate.dll) Version: 3.2.0.4000 (3.2.0.4000)
Syntax
| C# |
|---|
public virtual bool SupportsRowValueConstructorSyntax { get; } |
| Visual Basic |
|---|
Public Overridable ReadOnly Property SupportsRowValueConstructorSyntax As Boolean
Get |
| Visual C++ |
|---|
public:
virtual property bool SupportsRowValueConstructorSyntax {
bool get ();
} |
Return Value
True if this SQL dialect is known to support "row value
constructor" syntax; false otherwise.
See Also