Azure web api VS Mobile Services

前端 未结 1 1437
余生分开走
余生分开走 2021-02-08 22:41

What are the main differences when using

  • Azure Web API (technically using Azure Web Site Module) - https://www.windowsazure.com/en-us/develop/net/tutorials/rest-s
相关标签:
1条回答
  • 2021-02-08 23:08

    I think the Mobile Service is mainly focus on quick mobile service development especially for those data oriented. If you want to create a mobile application quickly, with CRUD against your data on cloud, with push notification out-of-box, mobile service might be a good choice.

    But if you need complex server side logic, Azure Web Site could be better. You can create your own API with your own logic by using ASP.NET MVC WebAPI, Node.js, etc.

    0 讨论(0)
提交回复
热议问题