Click or drag to resize

EntityCollectionBase<TEntity>.CreateHierarchicalProjection Method (Dictionary<Type, IEntityCollection>)

Creates a hierarchical projection of all the data in this collection and for each type in the complete graph found starting with each entity in this collection. Per entity type found, an entry is stored inside the destination dictionary. It will simply project every data element.

Namespace:  SD.LLBLGen.Pro.ORMSupportClasses
Assembly:  SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.6.0.0 (5.6.19.0117)
Syntax
public void CreateHierarchicalProjection(
	Dictionary<Type, IEntityCollection> destination
)

Parameters

destination
Type: System.Collections.Generic.Dictionary<Type, IEntityCollection>
The destination dictionary in which the projection result is stored.

Implements

IEntityCollection.CreateHierarchicalProjection(Dictionary<Type, IEntityCollection>)
Remarks
destination is cleared before a projection is performed.
See Also