[This is preliminary documentation and is subject to change.]
Transforms each record in the collection using the given selector function.
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<TOutput, TTime> Select<TOutput>( Expression<Func<TRecord, TOutput>> selector ) where TOutput : Object, IEquatable<TOutput>
Parameters
- selector
- Type: System.Linq.ExpressionsExpressionFuncTRecord, TOutput
A transform function to apply to each record.
Type Parameters
- TOutput
- The type of the transformed records.
Return Value
Type: CollectionTOutput, TTimeThe collection of transformed records.
See Also