LookupTransformation

Class LookupTransformation

The lookup transformation enriches the incoming data with data from the lookup source. Data from the lookup source is read into memory when the first record arrives. For each incoming row, the lookup tries to find a matching record in the loaded source data and uses this record to enrich the ingoing data.

Inherited Members
Namespace: ETLBox.DataFlow
Assembly: ETLBox.dll
Syntax
    public class LookupTransformation : LookupTransformation<ExpandoObject, ExpandoObject>, IDataFlowLogging, IDataFlowTransformation<ExpandoObject, ExpandoObject>, IDataFlowSource<ExpandoObject>, IDataFlowSource, IDataFlowDestination<ExpandoObject>, IDataFlowDestination, IDataFlowComponent, ILoggableTask

Constructors

LookupTransformation()

Declaration
    public LookupTransformation()

LookupTransformation(IDataFlowExecutableSource<ExpandoObject>)

Declaration
    public LookupTransformation(IDataFlowExecutableSource<ExpandoObject> source)
Parameters
TypeNameDescription
IDataFlowExecutableSource<ExpandoObject>source

LookupTransformation(IDataFlowExecutableSource<ExpandoObject>, Func<ExpandoObject, CachedData<ExpandoObject>, ExpandoObject>)

Declaration
    public LookupTransformation(IDataFlowExecutableSource<ExpandoObject> source, Func<ExpandoObject, CachedData<ExpandoObject>, ExpandoObject> applyRetrievedCacheToInput)
Parameters
TypeNameDescription
IDataFlowExecutableSource<ExpandoObject>source
Func<ExpandoObject, CachedData<ExpandoObject>, ExpandoObject>applyRetrievedCacheToInput

Implements