我正在处理 Windows Phone 8 的 Azure 示例,但我的列表返回空:
var items = App.MobileService.GetTable<MyItem>().ToCollectionView();
但我完全能够插入一行
await App.MobileService.GetTable<MyItem>().InsertAsync(newMyItem);
在网络管理器中查看表格,我看到我正在填充列表。
有人知道吗?
我正在处理 Windows Phone 8 的 Azure 示例,但我的列表返回空:
var items = App.MobileService.GetTable<MyItem>().ToCollectionView();
但我完全能够插入一行
await App.MobileService.GetTable<MyItem>().InsertAsync(newMyItem);
在网络管理器中查看表格,我看到我正在填充列表。
有人知道吗?