.Net CORE Dapper Connection String?
I am setting up my first .NET Core application. I am going to user Dapper (1.50.0-rc2) for the ORM. I have added the following to my appsettings.json file. "Data": { "DefaultConnection": { "ConnectionString": "user id=exampleusername;password=examplepassword;Data Source=db.example.com;Database=exampledb;" } }, I am confused at how to get the value of ConnectionString . As .NET Core is so new, online examples are all over the place and none seem to actually cover this. I have a sample Console App for .NET core on my GitHub repository Setup phase var builder = new ConfigurationBuilder()