Why are these asynchronous RIA Service calls executed in serial on the web server?
问题 I'm calling the RIA Service method ImportSubcomponentFileSetFiles (which is an Invoke, not Query) twice as follows: foreach (var viewModel in FileSetViewModels.Where(vm => vm.IsSelectedForImport)) { DomainContext.ImportSubcomponentFileSetFiles(viewModel.SubcomponentFileSet.Id, callback => { //... DomainContext.Load(DomainContext.GetSubcomponentFileSetWithStatusQuery(subcomponentFileSetId), LoadBehavior.RefreshCurrent, callback2 => { //... }, true); }, null); } I can see in Fiddler that two