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

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

Syntax

C#
public string GetQuotedName(
	Dialect d
)
Visual Basic
Public Function GetQuotedName ( _
	d As Dialect _
) As String
Visual C++
public:
String^ GetQuotedName(
	Dialect^ d
)

Parameters

d
Type: NHibernate.Dialect..::..Dialect
The Dialect that knows how to quote the column name.

Return Value

The column 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