我正在玩这个代码块:
try
{
mscvUser = imstUser
.Where(User => User.Id == intId)
.Take(1000)
.ToCollectionView();
}
catch(MobileServiceInvalidOperationException f){
MessageBox.Show(f.ToString());
}
它工作正常,但我一直故意断开我的互联网以进行测试,并且我一直在遇到 MobileServiceInvalidOperationException,但它不会在那个块中捕获它;它将它扔回 App.xaml.cs、中断并关闭应用程序。