Is there an Azure service to expose the database table to REST API?
I have a table in SQL Server and I want to expose that table via REST API without having to manage any infra or authentication
Is there an Azure service to expose the database table to REST API?
I have a table in SQL Server and I want to expose that table via REST API without having to manage any infra or authentication
No SQL server does not have a REST api directly, But you can build an OData service with ASP.NET Web API and Entity Framework.
https://www.asp.net/web-api/overview/odata-support-in-aspnet-web-api
You can create a class based on the table fields and on getting the table data convert it to List and response it.
To Convert DataTable to List use the link: Found in Stackoverflow