Gets the schema qualified name of the Table using the specified qualifier
Namespace:
NHibernate.MappingAssembly: NHibernate (in NHibernate.dll)
Syntax
Visual Basic (Declaration) |
---|
Public Function GetQualifiedName ( _ dialect As Dialect, _ defaultQualifier As String _ ) As String |
C# |
---|
public string GetQualifiedName( Dialect dialect, string defaultQualifier ) |
Visual C++ |
---|
public: String^ GetQualifiedName( Dialect^ dialect, String^ defaultQualifier ) |
JavaScript |
---|
function getQualifiedName(dialect, defaultQualifier); |
Parameters
- dialect
- Type: NHibernate.Dialect..::.Dialect
The Dialect that knows how to Quote the Table name.
- defaultQualifier
- Type: System..::.String
The Qualifier to use when accessing the table.
Return Value
A String representing the Qualified name.
Remarks
If this were used with MSSQL it would return a dbo.table_name.