UOW - A second operation started on this context before a previous asynchronous operation completed
I am trying following code, it has two parts, one is navigation via prism. When navigation is allowed I am starting a deep load asynchronously but each time with a new context. In later code I would want to cancel pending navigations that are not finished this loading but the below code does not even work so cancellation is a matter for later ;-) navigation logic : no problems here public void OnNavigatedTo(NavigationContext navigationContext) { int relatieId = (int)navigationContext.Parameters["RelatieId"]; if (_relatie != null && _relatie.RelatieId == relatieId) return; loadRelatieAsync