Gets the schema qualified name of the Table.

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

Syntax

Visual Basic (Declaration)
Public Function GetQualifiedName ( _
	dialect As Dialect _
) As String
C#
public string GetQualifiedName(
	Dialect dialect
)
Visual C++
public:
String^ GetQualifiedName(
	Dialect^ dialect
)
JavaScript
function getQualifiedName(dialect);

Parameters

dialect
Type: NHibernate.Dialect..::.Dialect
The Dialect that knows how to Quote the Table name.

Return Value

The name of the table qualified with the schema if one is specified.

See Also