Typically dialects which support sequences can drop a sequence with a single command.

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

Syntax

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

Parameters

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

Return Value

The sequence drop commands

Remarks

This is convenience form of GetDropSequenceStrings(String) to help facilitate that. Dialects which support sequences and can drop a sequence in a single command need *only* override this method. Dialects which support sequences but require multiple commands to drop a sequence should instead override GetDropSequenceStrings(String).

See Also