The SQL required to remove the underlying database objects for a TableGenerator.

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

Syntax

C#
public virtual string[] SqlDropString(
	Dialect dialect
)
Visual Basic
Public Overridable Function SqlDropString ( _
	dialect As Dialect _
) As String()
Visual C++
public:
virtual array<String^>^ SqlDropString(
	Dialect^ dialect
)

Parameters

dialect
Type: NHibernate.Dialect..::..Dialect
The NHibernate.Dialect to help with creating the sql.

Return Value

A String that will drop the database objects for the TableGenerator.

Implements

IPersistentIdentifierGenerator..::..SqlDropString(Dialect)

See Also