Retrieve the fetch descriptor associated with the given entity key.

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

Syntax

Visual Basic (Declaration)
Public Function GetSubselect ( _
	key As EntityKey _
) As SubselectFetch
C#
public SubselectFetch GetSubselect(
	EntityKey key
)
Visual C++
public:
SubselectFetch^ GetSubselect(
	EntityKey^ key
)
JavaScript
function getSubselect(key);

Parameters

key
Type: NHibernate.Engine..::.EntityKey
The entity key for which to locate any defined subselect fetch.

Return Value

The fetch descriptor; may return null if no subselect fetch queued for this entity key.

See Also