Boa tarde, acho que compreendi o Iconfiguration, fiz ate algumas alterações no meu codigo para ver se realmente estava compreendo public void ConfigureServices(IServiceCollection services)
{
var connectionString = Configuration.GetSection("ConnectionStrings").GetSection("Default");
services.AddControllersWithViews();
services.AddApplicationInsightsTelemetry();
services.AddDbContext<ApplicationContext>(
options => options.UseSqlServer(connectionString.Value)
);
}
repare que para recuperar a connectionString faço uso do GetSection e depois retorno o value, ate ae tudo certo. Mas minha duvida é com IConfiguration consigo recuperar somente do arquivo appsetings.json? Algo que posso me aprofundar mais nele. Quais as possibilidades, do que ele é capaz ?