Overload List
| Name | Description | |
|---|---|---|
| Fork T, R1, R2 (IQueryable T , Expression Func IEnumerable T , IEnumerable ForkTuple R1, R2 ) |
Forks a specified input dataset into two datasets. A specified user-defined function is
applied to each partition of the input dataset to produce a sequence of ForkTuples.
| |
| Fork T, R1, R2, R3 (IQueryable T , Expression Func IEnumerable T , IEnumerable ForkTuple R1, R2, R3 ) |
Forks a specified input dataset into three datasets. A specified user-defined function is
applied to each partition of the input dataset to produce a sequence of ForkTuples.
| |
| Fork T, R1, R2 (IQueryable T , Expression Func T, ForkTuple R1, R2 ) |
Compute two output datasets from one input dataset. A specified user-defined function is
applied to each input element to produce zero or one element for each output dataset.
| |
| Fork T, R1, R2, R3 (IQueryable T , Expression Func T, ForkTuple R1, R2, R3 ) |
Forks one input dataset into three output datasets. A specified user-defined function is
applied to each input element to produce zero or one element for each output dataset.
| |
| Fork TSource, TKey (IQueryable TSource , Expression Func TSource, TKey , TKey ) |
Divides the input dataset into a collection of datasets based on the keys of the records.
The method produces one output dataset for each key in the specified key array. Input
records that don't match any of the keys are dropped.
|
See Also