IEntityCollectionCreateHierarchicalProjection 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.4.0.0 (5.4.0)
Syntax void CreateHierarchicalProjection(
DataSet destination
)
Sub CreateHierarchicalProjection (
destination As DataSet
)
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.
Remarks Data in destination's datatables (if present) is removed before a projection is performed.
See Also