Return the column which is identified by column provided as argument.

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

Syntax

C#
public virtual Column GetColumn(
	Column column
)
Visual Basic
Public Overridable Function GetColumn ( _
	column As Column _
) As Column
Visual C++
public:
virtual Column^ GetColumn(
	Column^ column
)

Parameters

column
Type: NHibernate.Mapping..::..Column
column with atleast a name.

Return Value

The underlying column or null if not inside this table. Note: the instance *can* be different than the input parameter, but the name will be the same.

See Also