CsvHelper
CsvHelper copied to clipboard
Records completely skipped when missing field exists (dynamic)
When parsing a CSV file into dynamic, when a row is encountered where the number of columns does not match the number of columns in the header, the record is completely skipped and not returned from GetRecord<dynamic>() at all. Is there a way to make the library not do this? Instead, I want it to return the minimally hydrated dynamic record with the fields populated that it was able to read up to that point.