Transform the array of property indexes to an array of booleans

Namespace:  NHibernate.Persister.Entity
Assembly:  NHibernate (in NHibernate.dll)

Syntax

Visual Basic (Declaration)
Protected Function GetPropertiesToUpdate ( _
	dirtyProperties As Integer(), _
	hasDirtyCollection As Boolean _
) As Boolean()
C#
protected bool[] GetPropertiesToUpdate(
	int[] dirtyProperties,
	bool hasDirtyCollection
)
Visual C++
protected:
array<bool>^ GetPropertiesToUpdate(
	array<int>^ dirtyProperties, 
	bool hasDirtyCollection
)
JavaScript
function getPropertiesToUpdate(dirtyProperties, hasDirtyCollection);

Parameters

dirtyProperties
Type: array< System..::.Int32 >[]()[]
hasDirtyCollection
Type: System..::.Boolean

See Also