I am new to Azure Functions.I have a got a requirement to insert data into AzureSQLDB. The data I will get in the form of json by calling a restful api. I am planning to create a Timer Trigger function as this data transfer should be done once in a month automatically.I was wondering which approach should I take.
- Should I parse the json value into models in azure function and insert it one by one by executing query?
- Should I Send the whole json string to AzureSqlDB and querying the json and insert values in the table?
- Or is there any other approach considered as a best practice to this requirement?
Thanks in Advance..