How to open Azure Sql Server database using OData

Is there a way to create an Azure Sql database and then expose it as a resting API so that you can make erratic calls to CRUD tables using OData?

+8
source share
3 answers

My colleague wrote a blog in this section explaining how you can open an OData endpoint from databases hosted on Azure. And if you want to try our product, you can read about the technical specifications and download the product on this SQL Azure OData page.

0
source

Although related to Salesforce, this tutorial gives a good idea of โ€‹โ€‹how to create a simple ASP.Net application to present your tables as OData services.

0
source

I really liked this lesson

http://www.alessandromoura.com.br/2017/10/12/creating-an-odata-service-using-logic-apps/

a little harder to implement, but it's yours, you can do anything, and you can even make it anonymous if you want (I suppose this will not be the case in the lesson)

or Google "Azure SQL Database Odate"

0
source

Source: https://habr.com/ru/post/1260406/


All Articles