Gets the name of this Table in quoted form if it is necessary.

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

Syntax

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

Parameters

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

Return Value

The Table name in a form that is safe to use inside of a SQL statement. Quoted if it needs to be, not quoted if it does not need to be.

See Also