I have some issues with the program.cs file, with the version of ASP.NetCORE 2.0
Here\'s my code
public class Program
{
public static void Main(st
in m case I put extra { right before (above) "ConnectionStrings" :
in appsettings.json
I copied this from another file and assumed that "ConnectionStrings" :
must inside a curly braces {}
before
...
},
{ //<-- this one the culprit
"ConnectionStrings": {
"Dapper": "Server=.;Database=Dapper;Trusted_Connection=True;"
},
after
...
},
"ConnectionStrings": {
"Dapper": "Server=.;Database=Dapper;Trusted_Connection=True;"
},