我在我的Xamarin Andoid App中使用Azure Mobile Service作为后端。我想从SQL View中提取数据而不是表。如何从VIEW中提取数据,这是可能的。?
非常感谢
答案 0 :(得分:0)
根据我的经验,你想要的是可能的。您可以尝试在C#中定义自定义API控制器,以从Azure SQL数据库查询视图以呈现JSON正文,然后从Xamarin Android App上的自定义API中提取数据。
请参阅以下官方文件。
教程Work with the .NET backend server SDK for Azure Mobile Apps
How to: Define a custom API controller
部分
教程How to use the managed client for Azure Mobile Apps
Work with a custom API
部分
醇>
答案 1 :(得分:0)
从SQL视图中提取它实际上相对容易。在http://aka.ms/zumobook查看我的书的第3章 - 这将详细介绍如何设置视图。一旦正确定义了视图(并在后端的代码中匹配模型),它就会工作"。