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

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

Syntax

C#
public virtual IEntityCollection2 GetChildItems(
	int childEntityType,
	EntityCollection<SnRelationshipEntity> relationships
)
Visual Basic
Public Overridable Function GetChildItems ( 
	childEntityType As Integer,
	relationships As EntityCollection(Of SnRelationshipEntity)
) As IEntityCollection2
Visual C++
public:
virtual IEntityCollection2^ GetChildItems(
	int childEntityType, 
	EntityCollection<SnRelationshipEntity^>^ relationships
)
F#
abstract GetChildItems : 
        childEntityType : int * 
        relationships : EntityCollection<SnRelationshipEntity> -> IEntityCollection2 
override 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.

Implements

IRelatedContentBLL..::..GetChildItems(Int32, EntityCollection<(Of <<'(SnRelationshipEntity>)>>))

See Also