After evicting or deleting an entity, we don't need to know the query that was used to load it anymore (don't call this after loading the entity, since we might still need to load its collections)

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

Syntax

Visual Basic (Declaration)
Public Sub RemoveSubselect ( _
	key As EntityKey _
)
C#
public void RemoveSubselect(
	EntityKey key
)
Visual C++
public:
void RemoveSubselect(
	EntityKey^ key
)
JavaScript
function removeSubselect(key);

See Also