Hi
We have created a Azure function with Startup.cs class.
in the startup class we want to load few configuration parameters from DB and static files and load to some variables.
in the Azure function we are going to use these variables.
I would like to understand th behavior of the Startup.cs class execution.
when app is instantiating startup class is executing and configuration values are being pulled.
Every time when we call Azure function this startup code will execute or it will execute only at the time of Azure app is instantiated?
and when the app is scaled out to new app service plans (we setup the scale out on CPU utilization) the startup class will execute again in the new app??