September 2010
Intermediate to advanced
272 pages
5h 16m
English
ParallelForEach<T> is actually a special ForEach<T> activity. The difference between ParallelForEach<T> and ForEach<T> is that ParallelForEach<T>'s embedded statements are scheduled and run asynchronously. ParallelForEach<T> itself is akin to a Parallel activity for its child activities. Let's create a sample to see how it works.
Create a new Workflow Console Application under solution Chapter02 and name the project UsingParallelForEachActivity.
Open Workflow1.xaml and author a workflow as shown in the following screenshot:

Set the properties of both ...