Click or drag to resize
DataProjectorToDataTable Class
Projector engine which projects plain projection result data onto datarows which are added to a single datatable. Used by creation of projections of EntityView(2) data to datatables.
Inheritance Hierarchy
SystemObject
  SD.LLBLGen.Pro.ORMSupportClassesDataProjectorToDataTable

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 class DataProjectorToDataTable : IEntityDataProjector, 
	IGeneralDataProjector

The DataProjectorToDataTable type exposes the following members.

Constructors
  NameDescription
Public methodDataProjectorToDataTable
Initializes a new instance of the DataProjectorToDataTable class.
Top
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 methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodInitialize
Initializes the projector, using the projectors if necessary.
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Explicit Interface Implementations
  NameDescription
Explicit interface implementationPrivate methodIEntityDataProjectorAddProjectionResultToContainer
Adds a new projection result to the container contained into this instance. The container has to be set in the constructor.
Explicit interface implementationPrivate methodIGeneralDataProjectorAddProjectionResultToContainer
Adds a new projection result to the container contained into this instance. The container has to be set in the constructor.
Top
Remarks
This projector engine ignores SetUsingCTorHints as it isn't applicable to filling datatables.
See Also