我正在尝试使用Azure移动服务和Xamarin。我遵循官方教程的所有说明,为应用程序创建了Azure后端,并为Xamarin下载了示例快速启动应用程序。来自Azure的表单。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项目有问题。有人能解释一下这个例外吗?
所以…我忘了在我的Windows Phone上启用互联网连接