Generate the select expression fragment that will retrieve the next value of a sequence as part of another (typically DML) statement.

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

Syntax

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

Parameters

sequenceName
Type: System..::..String
the name of the sequence

Return Value

The "nextval" fragment.

Remarks

This differs from GetSequenceNextValString(String) in that this should return an expression usable within another statement.

See Also