How do I add or access an app.config file in Azure functions to add a database connection string?
If you\'re not supposed to add an app.config
I believe common practice is use environment variables for azure functions, then you can setup the environment variables in the Azure Function:
(Function App Settings -> Configure app settings -> App settings section)
Maybe would be more helpful if you can also let us know which language you are using?