gpt4 book ai didi

javascript - CRUD操作Azure移动服务表服务Windows Phone 8.1

转载 作者:行者123 更新时间:2023-12-03 08:01:00 25 4
gpt4 key购买 nike

我是 Windows Mobile 应用程序开发新手。我发现了很多像here这样的教程,关于创建 azure 移动服务并向表添加数据。但我找不到任何教程如何将数据从 tabe 检索回 XAML 并执行 CRUD 操作。您能否指导我阅读任何解释 Azure 移动服务表服务中的 CRUD 操作的文章。简单的例子对像我这样的新手更有帮助。提前致谢。

最佳答案

我建议阅读 Azure Microsoft 站点上的所有文档和示例代码。大量信息。

Get started with Mobile Services

How to use the managed client library for Azure Mobile Services

Mobile Apps documentation

使用此信息,您应该能够使示例应用程序正常运行,并开始为您的应用程序进行设计。

一开始这一切可能看起来有点麻烦,但是一旦您设置了服务,获取数据就像我在通用应用程序中使用的代码一样简单。

CRUD 调用...

public static MobileServiceClient MobileService { get; private set; }
await App.MobileService.GetTable<Vehicles>().UpdateAsync(vehicle);
await App.MobileService.GetTable<Vehicles>().InsertAsync(vehicle);
await App.MobileService.GetTable<Vehicles>().DeleteAsync(vehicle);

关于javascript - CRUD操作Azure移动服务表服务Windows Phone 8.1,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34573269/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com