On an .NET Core Console app, I'm trying to map settings from a custom appsettings.json file into a custom configuration class.
I've looked at several resources online but was not able to get the .Bind extension method work (i think it works on asp.net apps or previous version of .Net Core as most of the examples show that).
Here is the code:
static void Main(string[] args)
{
var builder = new ConfigurationBuilder()
.SetBasePath(Directory.GetCurrentDirectory())
.AddJsonFile("appsettings.json", optional: false, reloadOnChange: true);
IConfigurationRoot configuration = builder.Build();
//this is a custom configuration object
Configuration settings = new Configuration();
//Bind the result of GetSection to the Configuration object
//unable to use .Bind extension
configuration.GetSection("MySection");//.Bind(settings);
//I can map each item from MySection manually like this
settings.APIBaseUrl = configuration.GetSection("MySection")["APIBaseUrl"];
//what I wish to accomplish is to map the section to my Configuration object
//But this gives me the error:
//IConfigurationSection does not contain the definition for Bind
//is there any work around for this for Console apps
//or do i have to map each item manually?
settings = configuration.GetSection("MySection").Bind(settings);
//I'm able to get the result when calling individual keys
Console.WriteLine($"Key1 = {configuration["MySection:Key1"]}");
Console.WriteLine("Hello World!");
}
Is there any approach to auto map the results from GetSection("MySection") to a custom object? This is for Console Application running on .NET Core 1.1
Thanks!