Cinchoo
Cinchoo
It should work for Parquet as well. just replace ChoCSVWriter with ChoParquetWriter.
I'm not sure about ur requirement. u mean, tenures to be stored as array of objects in parquet file?
I'm not sure parquet file format supports it.
does this helps? https://stackoverflow.com/questions/36255821/datetimeoffset-error-utc-offset-of-local-datetime-does-not-match-the-offset-arg pls share sample csv with code, will help.
I'm not sure I can understand your question. If you want to ignore fields during deserialization, you can set `IgnoreFields` ``` var jsonRecordConfiguration = new ChoJSONRecordConfiguration { UseJSONSerialization = true,...
Its because `IgnoredFields` is `HashSet`, can't be serializable out of the box.
I'll add setter for this field. Will push the change shortly.
Released new version v1.2.1.22. Try it and let me know.
Here is how you can extract the json to datatable as expected ``` string json = @"[ { ""Players"": [ { ""player"": ""a"" }, { ""player"": ""b"" }, { ""player"":...
Well, u need JSONPath to select nodes for each field. Here is one link for your reference https://support.smartbear.com/alertsite/docs/monitors/api/endpoint/jsonpath.html ``` using (var r = ChoJSONReader.LoadText(json) .WithField("Players", valueConverter: o => String.Join(",", (IEnumerable)o),...