Gets the schema qualified name of the Table using the specified qualifier

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

Syntax

C#
public virtual string GetQualifiedName(
	Dialect dialect,
	string defaultCatalog,
	string defaultSchema
)
Visual Basic
Public Overridable Function GetQualifiedName ( _
	dialect As Dialect, _
	defaultCatalog As String, _
	defaultSchema As String _
) As String
Visual C++
public:
virtual String^ GetQualifiedName(
	Dialect^ dialect, 
	String^ defaultCatalog, 
	String^ defaultSchema
)

Parameters

dialect
Type: NHibernate.Dialect..::..Dialect
The NHibernate.Dialect that knows how to Quote the Table name.
defaultCatalog
Type: System..::..String
The catalog name.
defaultSchema
Type: System..::..String
The schema name.

Return Value

A String representing the Qualified name.

Remarks

If this were used with MSSQL it would return a dbo.table_name.

See Also