Click or drag to resize
DataProjectorToValueListT Class
Projector engine which projects plain rpojection result data onto a value list. This means that a single value is picked from the row to project and placed in the list to fill. The value in a plain row is used to project onto the destination.
Inheritance Hierarchy
SystemObject
  SD.LLBLGen.Pro.ORMSupportClassesDataProjectorToValueListT

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 DataProjectorToValueList<T> : IEntityDataProjector, 
	IGeneralDataProjector

Type Parameters

T
The type of the value in the value list.

The DataProjectorToValueListT type exposes the following members.

Constructors
  NameDescription
Public methodDataProjectorToValueListT(ListT)
Initializes a new instance of the DataProjectorToValueListT class.
Public methodDataProjectorToValueListT(IList)
Initializes a new instance of the DataProjectorToValueListT 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
See Also