I have 3 operation that need to process sequentially, they are
- GetMainInformation
- GetDetails1
- GetDetails2
I’m doing this by code like below but I think it isn’t clean. I want to know an alternative way to do async operation in sequential order.
GetMainInformation.Completed += GetDetails1;
GetDetails1.Completed += GetDetails2;
You can use Caliburn Micro’s IResult and Coroutines. How to ensure all properties have loaded in Silverlight ViewModel pattern (Concurrency Control?)