Sets the IdentityColumn for the SELECT sql to use.

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

Syntax

C#
public SqlSimpleSelectBuilder SetIdentityColumn(
	string[] columnNames,
	IType identityType
)
Visual Basic
Public Function SetIdentityColumn ( _
	columnNames As String(), _
	identityType As IType _
) As SqlSimpleSelectBuilder
Visual C++
public:
SqlSimpleSelectBuilder^ SetIdentityColumn(
	array<String^>^ columnNames, 
	IType^ identityType
)

Parameters

columnNames
Type: array<System..::..String>[]()[][]
An array of the column names for the Property
identityType
Type: NHibernate.Type..::..IType
The IType of the Identity Property.

Return Value

The SqlSimpleSelectBuilder.

See Also