Iterate just the elements of the collection that are already there. Don't load any new elements from the database.

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

Syntax

C#
public static IEnumerable GetLoadedElementsIterator(
	ISessionImplementor session,
	CollectionType collectionType,
	Object collection
)
Visual Basic
Public Shared Function GetLoadedElementsIterator ( _
	session As ISessionImplementor, _
	collectionType As CollectionType, _
	collection As Object _
) As IEnumerable
Visual C++
public:
static IEnumerable^ GetLoadedElementsIterator(
	ISessionImplementor^ session, 
	CollectionType^ collectionType, 
	Object^ collection
)

Parameters

session
Type: NHibernate.Engine..::..ISessionImplementor

[Missing <param name="session"/> documentation for "M:NHibernate.Engine.CascadingAction.GetLoadedElementsIterator(NHibernate.Engine.ISessionImplementor,NHibernate.Type.CollectionType,System.Object)"]

collectionType
Type: NHibernate.Type..::..CollectionType

[Missing <param name="collectionType"/> documentation for "M:NHibernate.Engine.CascadingAction.GetLoadedElementsIterator(NHibernate.Engine.ISessionImplementor,NHibernate.Type.CollectionType,System.Object)"]

collection
Type: System..::..Object

[Missing <param name="collection"/> documentation for "M:NHibernate.Engine.CascadingAction.GetLoadedElementsIterator(NHibernate.Engine.ISessionImplementor,NHibernate.Type.CollectionType,System.Object)"]

Return Value

[Missing <returns> documentation for "M:NHibernate.Engine.CascadingAction.GetLoadedElementsIterator(NHibernate.Engine.ISessionImplementor,NHibernate.Type.CollectionType,System.Object)"]

See Also