Create the SQL string to drop a foreign key constraint.

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

Syntax

Visual Basic (Declaration)
Public Overrides Function GetDropForeignKeyConstraintString ( _
	constraintName As String _
) As String
C#
public override string GetDropForeignKeyConstraintString(
	string constraintName
)
Visual C++
public:
virtual String^ GetDropForeignKeyConstraintString(
	String^ constraintName
) override
JavaScript
function getDropForeignKeyConstraintString(constraintName);

Parameters

constraintName
Type: System..::.String
The name of the foreign key to drop.

Return Value

The SQL string to drop the foreign key constraint.

See Also