My select query is working:
JObject results = client.Query("SELECT NodeID, Comments FROM Orion.NodesCustomProperties WHERE NodeID = 469",new JObject {{"vendor", "Cisco"}});
However I can't get an update query to work to do the actual change.
JObject results = client.Query("UPDATE Orion.NodesCustomProperties SET Comments= 'It Worked' WHERE NodeID = 469", new JObject { { "vendor", "Cisco" } });
Error: (400) Bad Request
I am using Json.NET 4.5.0.0
Thanks,
Richard