using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel;
using System.Globalization;
public static void Main()
using (var r = ChoJSONReader<Member>.LoadText(json)
.Configure(c => c.FlattenByNodeName = "Information")
using (var w = new ChoCSVWriter<Member>(Console.Out)
.Configure(c => c.TypeConverterFormatSpec.DateTimeFormat = "yyyy-MM-dd HH:mm:ss")
""ExtractDate"": ""2024-03-18T13:29:50Z"",
""DateOfBirth"": ""1960-03-12"",
""Email"": ""test@test.com"",
""Telephone"": ""01234-123456"",
""EmployerName"": ""AAA Ltd"",
""StartDate"": ""1988-04-01"",
""EndDate"": ""1990-10-15""
""EmployerName"": ""ABC Ltd"",
""StartDate"": ""1991-01-25"",
""EndDate"": ""1995-11-30""
""AlternateName"": ""Name"",
""AlternateName"": ""Name"",
""ExtractDate"": ""2024-03-18T13:29:50Z"",
""DateOfBirth"": ""1960-03-12"",
""Email"": ""test@test.com"",
""Telephone"": ""01234-123456"",
""EmployerName"": ""AAA Ltd"",
""StartDate"": ""1988-04-01"",
""EndDate"": ""1990-10-15""
""AlternateName"": ""NameZ"",
""AlternateName"": ""Name"",
public class AdditionalInfo
public string Type { get; set; }
[JsonProperty("AlternateName")]
public string AlternateName { get; set; }
[JsonProperty("AdditionalMessage")]
public List<string> AdditionalMessage { get; set; }
public string AddressLine1 { get; set; }
public string AddressLine2 { get; set; }
[JsonProperty("Zipcode")]
public string Zipcode { get; set; }
[JsonProperty("EmployerName")]
public string EmployerName { get; set; }
[JsonProperty("StartDate")]
public string EmploymentStartDate { get; set; }
[JsonProperty("EndDate")]
public string EmploymentEndDate { get; set; }
[JsonProperty("Surname")]
public string Surname { get; set; }
[JsonProperty("FirstName")]
public string FirstName { get; set; }
[JsonProperty("DateOfBirth")]
public string DateOfBirth { get; set; }
public string Email { get; set; }
[JsonProperty("Telephone")]
public string Telephone { get; set; }
[JsonProperty("Address")]
public Address Address { get; set; }
[JsonProperty("Employment")]
[ChoTypeConverter(typeof(EmploymentConverter))]
[ChoCSVRecordField(QuoteField = false)]
public List<Employment> Employment { get; set; }
[JsonProperty("ExtractDate")]
public DateTime ExtractDate { get; set; }
[JsonProperty("Information")]
public Information Information { get; set; }
[JsonProperty("AdditionalInfo")]
[ChoTypeConverter(typeof(AdditionalInfoConverter))]
[ChoCSVRecordField(QuoteField = false)]
public List<AdditionalInfo> AdditionalInfo { get; set; }
public List<Member> Member{ get; set; }
public class EmploymentConverter : IChoValueConverter, IChoHeaderConverter, IChoCollectionConverter
public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
var list = (value as ICollection<Employment>).Take(2).ToList();
list.Add(new Employment());
return list.Select(f => new object[] { f.EmployerName, f.EmploymentStartDate, f.EmploymentEndDate }).Unfold().ToArray();
public string GetHeader(string name, string fieldName, object parameter, CultureInfo culture)
return "EmployerName,EmplymentStartDate,EmplymentStartEndDate,EmployerName2,EmplymentStartDate2,EmplymentStartEndDate2";
public class AdditionalInfoConverter : IChoValueConverter, IChoHeaderConverter, IChoCollectionConverter
public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
var item = (value as ICollection<AdditionalInfo>).FirstOrDefault();
item = new AdditionalInfo();
var list = new AdditionalInfo[] { item };
return list.Select(f => new object[] { f.Type, f.AlternateName, String.Join("+", f.AdditionalMessage) }).Unfold().ToArray();
public string GetHeader(string name, string fieldName, object parameter, CultureInfo culture)
return "Type,AlternateName,AdditionalMessage";