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

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

Syntax

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

Parameters

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

Return Value

The SQL with the tableName inserted.

See Also