Click or drag to resize
IGeneralDataProjector Interface
Interface which defines a projector engine for projecting general data in object[] arrays (e.g. datareader results). The engine consumes projected plain data and produces an object which from then on contains the plain 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 interface IGeneralDataProjector

The IGeneralDataProjector type exposes the following members.

Properties
  NameDescription
Public propertyRequiresNewObjectArrayPerRow
Gets a value indicating whether this projector requires a new object array per row. Default is true. If false, the object array passed in as plain result is always the same array. This is useful if the projector copies the data from the rawProjectionResult to the actual instance and doesn't re-use the row anyway. Value is ignored if value projections are required for the projection.
Top
Methods
  NameDescription
Public methodAddProjectionResultToContainer
Adds a new projection result to the container contained into this instance. The container has to be set in the constructor.
Public methodInitialize
Initializes the projector, using the projectors if necessary.
Top
See Also