[This is preliminary documentation and is subject to change.]
Filters the collection to contain only records that match the given predicate.
Namespace: Microsoft.Research.Naiad.Frameworks.DifferentialDataflow
Assembly: Microsoft.Research.Naiad.DifferentialDataflow (in Microsoft.Research.Naiad.DifferentialDataflow.dll) Version: 0.5.0.0 (0.5.0.0)
Syntax
C#
Collection<TRecord, TTime> Where( Expression<Func<TRecord, bool>> predicate )
Parameters
- predicate
- Type: System.Linq.ExpressionsExpressionFuncTRecord, Boolean
A function that returns true if and only if the record will be kept in the output.
Return Value
Type: CollectionTRecord, TTimeThe collection of records that satisfy the predicate.
See Also