Josh Close
Josh Close
The `ObjectResolver` has a static. https://github.com/JoshClose/CsvHelper/blob/6b339704fe22eb8c90b2d3da6e8470561d7c708a/src/CsvHelper/ObjectResolver.cs#L20 `ReflectionHelper` https://github.com/JoshClose/CsvHelper/blob/6b339704fe22eb8c90b2d3da6e8470561d7c708a/src/CsvHelper/ReflectionHelper.cs#L51
What is the definition for `PlayLogItemViewModel`? Are you able to create a unit test that fails?
Your anonymous type example currently works as written. I'd have to look into the dictionary support. You can pass in a dictionary, but not a list of dictionaries. Theoretically this...
You need to either use the `Parameter` method. ```cs class ExamplemMap : ClassMap { public ExamplemMap() { Parameter(nameof(CsvClass.RequiredStr)); Parameter(nameof(CsvClass.RequiredInt)); Parameter(nameof(CsvClass.OptionsStr)).Optional(); } } ``` Or you can use attributes. ```cs record...
Try updating to 33.1.0 and see if that fixes it. I merged a PR that theoretically should fix this.
You'll need to submit an issue to that library.
Yes, sorry. That library uses this one and needs to be updated to match changes in this one. It looks like they were matching the numbering system and haven't updated...
I have nothing to do with that Excel library. Personally, I would fix the issue in that library and submit a pull request. It looks like it's not maintained anymore....
The idea is, you should never have a `null` record. The issue here is `ReadAsync` should be returning `false`. Does this sound reasonable? As far as the `ReadHeader` thing, that...
Working on it right now.