WhereTransformation

Class WhereTransformation

The WhereTransformation allows you to filter out rows where a defined predicate is false. By default the WhereTransformation will filter out null values.

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

Constructors

WhereTransformation()

Declaration
    public WhereTransformation()

WhereTransformation(Predicate<ExpandoObject>)

Declaration
    public WhereTransformation(Predicate<ExpandoObject> predicate)
Parameters
TypeNameDescription
Predicate<ExpandoObject>predicate

Implements