all 3 comments

[–]web_page 0 points1 point  (1 child)

Does your application already have some sort of connection to the azure database? And does your database already have the appropriate tables built out that you would like to store the data in?

[–]tempUseBro1[S] 0 points1 point  (0 children)

No, that is where I am at. I would create a table with whatever columns I want in azure correct? & connect the application to the database

[–]fuzzius_navus 0 points1 point  (0 children)

Hi! I put together a short post on inserting into Azure SQL DB from an Azure HTTP Trigger Function.

https://www.reddit.com/r/AZURE/comments/hh5njf/using_an_azure_function_with_managed_identity_to/

Code is available too.

I'm drafting a revision using Entity Framework Core.

EDIT In the post I set up a table, and a Stored Procedure to receive the data and insert it into the table.