Click or drag to resize
EntityViewTEntityCreateProjection Method (ListIEntityPropertyProjector, DataTable, Boolean, IPredicate)
Projects the data in the view onto a new set, stored in a datatable 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.3.0.0 (5.3.0)
Syntax
public virtual void CreateProjection(
	List<IEntityPropertyProjector> propertyProjectors,
	DataTable destination,
	bool allowDuplicates,
	IPredicate filter
)

Parameters

propertyProjectors
Type: System.Collections.GenericListIEntityPropertyProjector
The property projector objects to produce the data for the new set.
destination
Type: System.DataDataTable
The destination datatable 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.
allowDuplicates
Type: SystemBoolean
if set to false, it will perform distinct filtering on all values in the projection result.
filter
Type: SD.LLBLGen.Pro.ORMSupportClassesIPredicate
Filter to apply on every entity in this view. If the filter resolves to true, the entity is used for projection

Implements

IEntityViewCreateProjection(ListIEntityPropertyProjector, DataTable, Boolean, IPredicate)
See Also