Replies: 1 comment 1 reply
-
Fixed. You might need to refresh the page for it to show. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have been using this config successfully until upgrade to v28.
var csvConfig = new CsvConfiguration(CultureInfo.InvariantCulture)
{
ShouldSkipRecord = record => record.Record.All(field => String.IsNullOrWhiteSpace(field))
};
I found information about the change here: https://joshclose.github.io/CsvHelper/migration/v28/
which indicates string[] ShouldSkipRecordArgs.Record changed to IRecordRow ShouldSkipRecordArgs.Row
In my case, It appears to be IReaderRow not IRecordRow and even the sample provided (using length) does not work?
I'm obviously doing something wrong. Any suggestions would be appreciated.
Beta Was this translation helpful? Give feedback.
All reactions