1

我正在尝试在 Windows Phone 8 应用程序上更新 Azure 移动服务中的列。该表存储用户数据,我想找到具有特定电子邮件和密码的用户,然后更新其中的一列。目前我有:

IMobileServiceTable<Item> table = App.MobileService.GetTable<Item>();

        var account = table
            .Where(Item => Item.Email == _email_ && Item.Password == _pass_).
            Take(1).ToListAsync();

        List<Item> list = account;
        list[0].Pursue = pursue;      // the value I want to assign

我要更新的列的名称是“Pursue”。在这个阶段之后我应该做什么?

table.UpdateAsync(account);

我尝试了上面的行,但出现错误(也将更改应用于“列表”)。有什么建议么?谢谢。

4

1 回答 1

2

我终于弄明白了。我在定义类时添加了 async 关键字(需要使用 await)。

IMobileServiceTable<Item> table = App.MobileService.GetTable<Item>();

        var account = table
            .Where(Item => Item.Email == _email_ && Item.Password == _pass_).
            Take(1).ToListAsync();

        List<Item> list = await account;
        list[0].Pursue = pursue;

        await table.UpdateAsync(list[0]);
于 2013-08-25T00:33:15.840 回答