Sets the IdentityColumn for the SELECT sql to use.

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

Syntax

Visual Basic (Declaration)
Public Function SetIdentityColumn ( _
	columnNames As String(), _
	identityType As IType _
) As SqlSimpleSelectBuilder
C#
public SqlSimpleSelectBuilder SetIdentityColumn(
	string[] columnNames,
	IType identityType
)
Visual C++
public:
SqlSimpleSelectBuilder^ SetIdentityColumn(
	array<String^>^ columnNames, 
	IType^ identityType
)
JavaScript
function setIdentityColumn(columnNames, 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