Hi!
I try to use the Azure Mobile Services from my simple Forms app and it don't work. The last command just run forever. I checked the internet connection with a WebClient and it is okay. The code works fine in a simple Windows console application.
var ms = new MobileServiceClient(
@"https://xxx.azure-mobile.net/",
@"xxx"
);
IMobileServiceTable<TodoItem> todoTable =
ms.GetTable<TodoItem>();
List<TodoItem> items = todoTable
.Where(todoItem => todoItem.Complete == false).ToListAsync().Result;