Retrieve the EntityEntry representation of the given entity.

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

Syntax

Visual Basic (Declaration)
Function GetEntry ( _
	entity As Object _
) As EntityEntry
C#
EntityEntry GetEntry(
	Object entity
)
Visual C++
EntityEntry^ GetEntry(
	Object^ entity
)
JavaScript
function getEntry(entity);

Parameters

entity
Type: System..::.Object
The entity for which to locate the EntityEntry.

Return Value

The EntityEntry for the given entity.

See Also