In the app settings JSON file I am passing through a connection string which contains the name of my server ‘ .SQL2017 ‘ I recieve the following warning in error list when entering the server name …
Tag: json.net
Checking for empty or null JToken in a JObject
I have the following… JArray clients = (JArray)clientsParsed[“objects”]; foreach (JObject item in clients.Children()) { // etc.. SQL params stuff… command.Parameters[“@MyParameter”]….