Generates the string to drop the table using SQL Server syntax.

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

Syntax

Visual Basic (Declaration)
Public Overrides Function GetDropTableString ( _
	tableName As String _
) As String
C#
public override string GetDropTableString(
	string tableName
)
Visual C++
public:
virtual String^ GetDropTableString(
	String^ tableName
) override
JavaScript
function getDropTableString(tableName);

Parameters

tableName
Type: System..::.String
The name of the table to drop.

Return Value

The SQL with the tableName inserted.

See Also