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.

Inheritance
object
DataFlowSource<ExpandoObject>
DataFlowTransformation<ExpandoObject, ExpandoObject>
FilterTransformation<ExpandoObject>
FilterTransformation
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: ETLBox.DataFlow
Assembly: ETLBox.dll
Syntax
    public class FilterTransformation : FilterTransformation<ExpandoObject>, ILoggableTask, IDataFlowLogging, IDataFlowTransformation<ExpandoObject, ExpandoObject>, IDataFlowSource<ExpandoObject>, IDataFlowSource, IDataFlowDestination<ExpandoObject>, IDataFlowDestination, IDataFlowComponent

Constructors

FilterTransformation()

Declaration
    public FilterTransformation()

FilterTransformation(Predicate<ExpandoObject>)

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

Implements