0
http://www.windowsazure.com/en-us/develop/mobile/tutorials/get-started-with-data-dotnet/#update-appWindows Mobile的服務查詢在WP8
我WP8的初學者,我按照上面的教程創建一個移動服務, 我可以插入/更新/刪除/查詢在雲中的表。
我的問題是,在查詢功能(RefreshToDoItem):
private void RefreshTodoItems()
{
// This query filters out completed TodoItems.
items = todoTable
.Where(todoItem => todoItem.Complete == false)
.ToCollectionView();
ListItems.ItemsSource = items;
}
的「項目」是可被用作數據源在容器中,以顯示一個MobileServiceCollectionView對象。
但是,我如何檢索這些結果之一 - 我的意思是我可以用於其他目的的特定「字段/列」的數據?
非常感謝!