2016-09-11 62 views
0

我試圖使用Azure移動服務和Xamarin。我遵循官方教程的所有說明,爲應用程序創建了Azure後端,併爲Azure的Xamarin.Forms下載了示例快速啓動應用程序。 有代碼TodoItemManager.csMobileServiceInvalidOperationException拋出Xamarin.WindowsPhone 8.1項目

public async Task<ObservableCollection<TodoItem>> GetTodoItemsAsync(bool syncItems = false) 
    { 
     try 
     { 
      IEnumerable<TodoItem> items = await todoTable 
       .Where(todoItem => !todoItem.Done) 
       .ToEnumerableAsync(); 

      return new ObservableCollection<TodoItem>(items); 
     } 
     catch (MobileServiceInvalidOperationException msioe) 
     { 
      Debug.WriteLine(@"Invalid sync operation: {0}", msioe.Message); 
     } 
     catch (Exception e) 
     { 
      Debug.WriteLine(@"Sync error: {0}", e.Message); 
     } 
     return null; 
    } 

和我一起消息 「Invalid sync operation: The request could not be completed. (Not Found)」 得到MobileServiceInvalidOperationException
我已經在UWP應用上測試過Azure Backend,它工作正常。所以看起來WP8.1項目存在問題。任何人都可以幫助解決這個問題嗎?

回答

1

所以..我忘了在我的Windows Phone上啓用互聯網連接

相關問題