Click or drag to resize
EntityCollectionBase2TEntityCreateHierarchicalProjection Method (DataSet)
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, a new datatable is created inside destination or if one with the name of the entity is already present, that one is used. 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.3.0.0 (5.3.0)
Syntax
public void CreateHierarchicalProjection(
	DataSet destination
)

Parameters

destination
Type: System.DataDataSet
The destination dataset in which the projection result is stored. Each DataTable has the name of the entity contained, e.g. "CustomerEntity". DataRelations are created between the data if applicable.

Implements

IEntityCollection2CreateHierarchicalProjection(DataSet)
Remarks
Data in destination's datatables (if present) is removed before a projection is performed.
See Also