Sets the IdentityColumn for the DELETE sql to use.

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

Syntax

C#
public SqlDeleteBuilder SetIdentityColumn(
	string[] columnNames,
	IType identityType
)
Visual Basic
Public Function SetIdentityColumn ( _
	columnNames As String(), _
	identityType As IType _
) As SqlDeleteBuilder
Visual C++
public:
SqlDeleteBuilder^ 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 SqlDeleteBuilder.

See Also