Initializes a new instance of Column.

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

Syntax

Visual Basic (Declaration)
Public Sub New ( _
	type As IType, _
	typeIndex As Integer _
)
C#
public Column(
	IType type,
	int typeIndex
)
Visual C++
public:
Column(
	IType^ type, 
	int typeIndex
)
JavaScript
NHibernate.Mapping.Column = function(type, typeIndex);

Parameters

type
Type: NHibernate.Type..::.IType
The NHibernate IType that reads from and writes to the column.
typeIndex
Type: System..::.Int32
The index of the column in the IType.

See Also