Conditional DoWhile loop.
Namespace: Microsoft.Research.DryadLinqAssembly: Microsoft.Research.DryadLinq (in Microsoft.Research.DryadLinq.dll) Version: 0.1.2.0 (0.1.2.0)
Syntax
Parameters
- source
- Type: System.Linq IQueryable T
The input dataset
- body
- Type: System Func IQueryable T , IQueryable T
The code body of the DoWhile loop
- cond
- Type: System Func IQueryable T , IQueryable T , IQueryable Boolean
The termination condition of the DoWhile loop
Type Parameters
- T
- The type of the input records
Return Value
Type: IQueryable TThe output dataset when the loop terminates
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type IQueryable T . When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).See Also