Get the property value from the given owner instance.

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

Syntax

C#
Object GetForInsert(
	Object owner,
	IDictionary mergeMap,
	ISessionImplementor session
)
Visual Basic
Function GetForInsert ( _
	owner As Object, _
	mergeMap As IDictionary, _
	session As ISessionImplementor _
) As Object
Visual C++
Object^ GetForInsert(
	Object^ owner, 
	IDictionary^ mergeMap, 
	ISessionImplementor^ session
)

Parameters

owner
Type: System..::..Object
The instance containing the value to be retrieved.
mergeMap
Type: System.Collections..::..IDictionary
a map of merged persistent instances to detached instances
session
Type: NHibernate.Engine..::..ISessionImplementor
The session from which this request originated.

Return Value

The extracted value.

See Also