Maps identifiers to Entities or Collections.

Namespace:  NHibernate.Type
Assembly:  NHibernate (in NHibernate.dll)

Syntax

Visual Basic (Declaration)
Public Overridable Function ResolveIdentifier ( _
	value As Object, _
	session As ISessionImplementor, _
	owner As Object _
) As Object
C#
public virtual Object ResolveIdentifier(
	Object value,
	ISessionImplementor session,
	Object owner
)
Visual C++
public:
virtual Object^ ResolveIdentifier(
	Object^ value, 
	ISessionImplementor^ session, 
	Object^ owner
)
JavaScript
function resolveIdentifier(value, session, owner);

Parameters

value
Type: System..::.Object
An identifier or value returned by Hydrate()
session
Type: NHibernate.Engine..::.ISessionImplementor
The ISessionImplementor is not used by this method.
owner
Type: System..::.Object
The parent Entity is not used by this method.

Return Value

The value.

Implements

IType..::.ResolveIdentifier(Object, ISessionImplementor, Object)

Remarks

There is nothing done in this method other than return the value parameter passed in.

See Also