使用天蓝色移动应用离线数据sycn从视图中提取数据

时间:2017-02-08 03:27:42

标签: xamarin.android azure-mobile-services

我在我的Xamarin Andoid App中使用Azure Mobile Service作为后端。我想从SQL View中提取数据而不是表。如何从VIEW中提取数据,这是可能的。?

非常感谢

2 个答案:

答案 0 :(得分:0)

根据我的经验,你想要的是可能的。您可以尝试在C#中定义自定义API控制器,以从Azure SQL数据库查询视图以呈现JSON正文,然后从Xamarin Android App上的自定义API中提取数据。

请参阅以下官方文件。

  1. 教程Work with the .NET backend server SDK for Azure Mobile Apps

  2. How to: Define a custom API controller部分
  3. 教程How to use the managed client for Azure Mobile Apps

  4. Work with a custom API部分

答案 1 :(得分:0)

从SQL视图中提取它实际上相对容易。在http://aka.ms/zumobook查看我的书的第3章 - 这将详细介绍如何设置视图。一旦正确定义了视图(并在后端的代码中匹配模型),它就会工作"。