I am pretty a new at azure function development and I a not really understand how configuration for azure function, especially for local development I need to set up some parameters at configuration and use them at my code I have appsettings.json and local.settings.json
I added IConfiguration configuration as parameter to constructor to some my class and try to get value by calling _configuration["MyVar"]
but values are always null. (like it not read appsettings.json)
that is the best practice to get/set some parameters values for local test and use them after on azure side.