Click or drag to resize
EntityCollectionBase2<TEntity>.CreateHierarchicalProjection Method (List<IViewProjectionData>, Dictionary<Type, IEntityCollection2>)
Creates a hierarchical projection of all the data in this view and for each type in the complete graph found starting with each entity in this view, using the viewProjections data passed in. Per entity type found, an entry is stored inside the destination dictionary.

Namespace:  SD.LLBLGen.Pro.ORMSupportClasses
Assembly:  SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.2.0.0 (5.2.17.0403)
Syntax
public void CreateHierarchicalProjection(
	List<IViewProjectionData> collectionProjections,
	Dictionary<Type, IEntityCollection2> destination
)

Parameters

collectionProjections
Type: System.Collections.Generic.List<IViewProjectionData>
The projection data per entity type
destination
Type: System.Collections.Generic.Dictionary<Type, IEntityCollection2>
The destination dictionary in which the projection result is stored.
Remarks
destination is cleared before a projection is performed.
See Also