Extract the values of the insertable properties of the entity (including backrefs)

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

Syntax

C#
Object[] GetPropertyValuesToInsert(
	Object entity,
	IDictionary mergeMap,
	ISessionImplementor session
)
Visual Basic
Function GetPropertyValuesToInsert ( _
	entity As Object, _
	mergeMap As IDictionary, _
	session As ISessionImplementor _
) As Object()
Visual C++
array<Object^>^ GetPropertyValuesToInsert(
	Object^ entity, 
	IDictionary^ mergeMap, 
	ISessionImplementor^ session
)

Parameters

entity
Type: System..::..Object
The entity from which to extract.
mergeMap
Type: System.Collections..::..IDictionary
a map of instances being merged to merged instances
session
Type: NHibernate.Engine..::..ISessionImplementor
The session in which the resuest is being made.

Return Value

The insertable property values.

See Also