Cinchoo

Results 174 comments of Cinchoo

XmlElement is optional. Lib works without them as well.

Pls post sample xml file and POCO object structure.

In this case, xml comes with default namespace, all child classes must be decorated with ``` [XmlRoot(ElementName = "PropertyGroup", Namespace = "http://schemas.microsoft.com/developer/msbuild/2003")] public class PropertyBlock { } ``` Wrote a...

I'll be working to handle this automatically by the reader (auto discover default namespace, use them implicitly). Will keep you posted with update.

rolled out new beta version ChoETL.Core v1.2.1.43-beta2, handle the default namespace implicitly. Sample fiddle: https://dotnetfiddle.net/JLICyi

With the latest release (ChoETL.Parquet.1.0.1.14 / ChoETL.NETStandard.1.2.1.32), you can produce parquet file as below ``` using (var r = ChoJSONReader.LoadText(json.ToString()).UseJsonSerialization()) { using (var w = new ChoParquetWriter("CompleteFile.parquet")) { w.Write(r.Select(rec1 =>...

Known issue, not handling the `null` values at the nested object level. Applied fix. Take ChoETL.JSON.NETStandard v1.2.1.29-beta8, try it. Couple of ways you can achieve Method 1: ``` string csv...

With the latest release, conversion is simplified as below (on the JSON writer end) ``` string csv = @"Id,name,nestedobject/id,nestedobject/name,nestedarray/0/name, nestedarray/0/city, nestedarray/1/name, nestedarray/200/city 1,,2,objName,namelist10,citylist10,namelist11,citylist11 2,name1,3,obj3Nmae,namelist20,citylist20,,citylist21"; using (var w = new ChoJSONWriter(Console.Out)...

it is not clear to me. Were u trying to convert JSON to CSV? Pls state the expected format with sample output. If you are converting JSON to CSV, check...

Does this help? https://dotnetfiddle.net/EGq0LA