Click or drag to resize

EntityView<TEntity>.IEntityView.CreateProjection Method (List<IEntityPropertyProjector>, IEntityCollection)

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.6.0.0 (5.6.19.0117)
Syntax
void IEntityView.CreateProjection(
	List<IEntityPropertyProjector> propertyProjectors,
	IEntityCollection destination
)

Parameters

propertyProjectors
Type: System.Collections.Generic.List<IEntityPropertyProjector>
The property projector objects to produce the data for the new set.
destination
Type: SD.LLBLGen.Pro.ORMSupportClasses.IEntityCollection
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.

Implements

IEntityView.CreateProjection(List<IEntityPropertyProjector>, IEntityCollection)
Remarks
Doesn't perform distinct filtering
See Also