Table of Contents

Method ForEach

Namespace
Millrace.Workflows
Assembly
Millrace.dll

ForEach<TItem>(Expression<Func<TData, IEnumerable<TItem>>>, Action<IWorkflowBuilder<TData>>)

Runs body once per item of a collection selected from the document.

IWorkflowBuilder<TData> ForEach<TItem>(Expression<Func<TData, IEnumerable<TItem>>> collection, Action<IWorkflowBuilder<TData>> body)

Parameters

collection Expression<Func<TData, IEnumerable<TItem>>>
body Action<IWorkflowBuilder<TData>>

Returns

IWorkflowBuilder<TData>

Type Parameters

TItem