Class FilterTransformation

The FilterTransformation allows you to filter out rows that evaluate to a given predicate. By default the filter transformation will filter out null values.

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

Constructors

FilterTransformation()

Declaration
    public FilterTransformation()

FilterTransformation(Predicate<ExpandoObject>)

Declaration
    public FilterTransformation(Predicate<ExpandoObject> filterPredicate)
Parameters
TypeNameDescription
Predicate<ExpandoObject>filterPredicate

Implements