JSON to CSV conversion using CHOETL displaying values in one row and not columns
问题 I am converting a JSON file to a CSV file. The JSON has multiple nested objects. While converting, I am able to get all the values out of the JSON and into the CSV. However, all the values are being shown as one row with the same heading repeated multiple times. I am using CHOETL library. using (var csv = new ChoCSVWriter("file1.csv").WithFirstLineHeader().WithDelimiter(",")) { using (var json = new ChoJSONReader("file2.json") .WithField("RecordID", jsonPath: "$..Events[*].RecordId")