IEntityView2CreateProjection Method (ListIEntityPropertyProjector, IEntityCollection2) | 
 
            Projects the data in the view onto a new set, stored in an entity collection using the property projector objects to produce the actual data.
            
 
    Namespace: 
   SD.LLBLGen.Pro.ORMSupportClasses
    Assembly:
   SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.10.0.0 (5.10.0)
Syntaxvoid CreateProjection(
	List<IEntityPropertyProjector> propertyProjectors,
	IEntityCollection2 destination
)
Sub CreateProjection ( 
	propertyProjectors As List(Of IEntityPropertyProjector),
	destination As IEntityCollection2
)
Parameters
- propertyProjectors
 - Type: System.Collections.GenericListIEntityPropertyProjector
The property projector objects to produce the data for the new set. - destination
 - Type: SD.LLBLGen.Pro.ORMSupportClassesIEntityCollection2
The destination entity collection which will contain the data from this view and which forms a new set. 
            Data which is an object references is not copied by value, but is copied by reference. 
RemarksDoesn't perform distinct filtering
See Also