Retrieves a list of child items from in-memory relationships collection.

Namespace: MonoSoftware.MonoX.Repositories
Assembly: MonoX (in MonoX.dll) Version: 5.1.40.5065 (5.1.40.5065)

Syntax

C#
IEntityCollection2 GetChildItems(
	int childEntityType,
	EntityCollection<SnRelationshipEntity> relationships
)
Visual Basic
Function GetChildItems ( 
	childEntityType As Integer,
	relationships As EntityCollection(Of SnRelationshipEntity)
) As IEntityCollection2
Visual C++
IEntityCollection2^ GetChildItems(
	int childEntityType, 
	EntityCollection<SnRelationshipEntity^>^ relationships
)
F#
abstract GetChildItems : 
        childEntityType : int * 
        relationships : EntityCollection<SnRelationshipEntity> -> IEntityCollection2 

Parameters

childEntityType
Type: System..::..Int32
Child entity type.
relationships
Type: EntityCollection<(Of <(<'SnRelationshipEntity>)>)>
Relationship collection to examine for the presence of child entities.

Return Value

Type: IEntityCollection2
Collection of child entities if present in memory, otherwise null.

See Also