I've been looking everywhere, can't seem to find a solution. I have a very long string in a textfile. It's already in a Json format i.e.
[{"column":"data", "anothercolumn":"data"}, {"column":"data", "anothercolumn": "data"}]
I want to convert this to an INSERT MS SQL statement using C#. Is there any way to do this? I can't figure it out myself using DeserializeObject or DataSets and DataTables. Help is much appreciated.