Gets the Alias that should be used for the column

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

Syntax

Visual Basic (Declaration)
Public Function GetAlias ( _
	columnName As String _
) As String
C#
public string GetAlias(
	string columnName
)
Visual C++
public:
String^ GetAlias(
	String^ columnName
)
JavaScript
function getAlias(columnName);

Parameters

columnName
Type: System..::.String
The name of the column to get the Alias for.

Return Value

The Alias if one exists, null otherwise

See Also