Transform the array of property indexes to an array of booleans, true when the property is dirty

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

Syntax

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

Parameters

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

[Missing <param name="dirtyProperties"/> documentation for "M:NHibernate.Persister.Entity.AbstractEntityPersister.GetPropertiesToUpdate(System.Int32[],System.Boolean)"]

hasDirtyCollection
Type: System..::..Boolean

[Missing <param name="hasDirtyCollection"/> documentation for "M:NHibernate.Persister.Entity.AbstractEntityPersister.GetPropertiesToUpdate(System.Int32[],System.Boolean)"]

Return Value

[Missing <returns> documentation for "M:NHibernate.Persister.Entity.AbstractEntityPersister.GetPropertiesToUpdate(System.Int32[],System.Boolean)"]

See Also