Adds the Property's updatable columns to the UPDATE sql

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

Syntax

C#
public SqlUpdateBuilder AddColumns(
	string[] columnNames,
	bool[] updateable,
	IType propertyType
)
Visual Basic
Public Function AddColumns ( _
	columnNames As String(), _
	updateable As Boolean(), _
	propertyType As IType _
) As SqlUpdateBuilder
Visual C++
public:
SqlUpdateBuilder^ AddColumns(
	array<String^>^ columnNames, 
	array<bool>^ updateable, 
	IType^ propertyType
)

Parameters

columnNames
Type: array<System..::..String>[]()[][]
An array of the column names for the Property
updateable
Type: array<System..::..Boolean>[]()[][]
An array of updatable column flags. If this array is null, all supplied columns are considered updatable.
propertyType
Type: NHibernate.Type..::..IType
The IType of the property.

Return Value

The SqlUpdateBuilder.

See Also