Pivot

Class Pivot

Use the Pivot transformation to pivot your data. Example:

Month,MonthValue Jan,100 Feb,200 Mar,300

will become

Jan,Feb,Mar 100,200,300

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

Constructors

Pivot()

Declaration
    public Pivot()

Implements