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

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

Syntax

Visual Basic (Declaration)
Public Function SqlDropString ( _
	dialect As Dialect _
) As String
C#
public string SqlDropString(
	Dialect dialect
)
Visual C++
public:
virtual String^ SqlDropString(
	Dialect^ dialect
) sealed
JavaScript
function sqlDropString(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