Azure Mobile Services と Xamarin を使用しようとしています。公式チュートリアルのすべての指示に従い、アプリケーション用の Azure バックエンドを作成し、Azure から Xamarin.Forms 用のサンプル クイック スタート アプリをダウンロードしました。にコードがありますTodoItemManager.cs
:
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;
}
そしてMobileServiceInvalidOperationException
、「 」というメッセージを受け取りましたInvalid sync operation: The request could not be completed. (Not Found)
。
UWP アプリで Azure バックエンドをテストしましたが、正常に動作します。WP8.1 プロジェクトに問題があるようです。誰でもこの例外を手伝ってもらえますか?