Get the FOR UPDATE OF column_list NOWAIT fragment appropriate for this dialect given the aliases of the columns to be write locked.

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

Syntax

C#
public virtual string GetForUpdateNowaitString(
	string aliases
)
Visual Basic
Public Overridable Function GetForUpdateNowaitString ( _
	aliases As String _
) As String
Visual C++
public:
virtual String^ GetForUpdateNowaitString(
	String^ aliases
)

Parameters

aliases
Type: System..::..String
The columns to be write locked.

Return Value

The appropriate FOR UPDATE colunm_list NOWAIT clause string.

See Also