Click or drag to resize
ProjectionRowProjectorFunc Delegate
Delegate definition which is used by linq. The delegate is used to produce a single instance from the projection row specified.

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 delegate Object ProjectionRowProjectorFunc(
	ProjectionRow r,
	int[] indices
)

Parameters

r
Type: SD.LLBLGen.Pro.ORMSupportClassesProjectionRow
The row representing object which wraps the current row of values to be projected.
indices
Type: SystemInt32
The list of indices inside values. The delegate has to refer to these indices to obtain values from values

Return Value

Type: Object
the value to use for the projection.
Remarks
Used by Linq to produce values from projections using local functions.
See Also