wikis Search Results · repo:Cinchoo/ChoETL
0 results
(156 ms)0 results
Cinchoo ETL Welcome to the Cinchoo ETL documentation! Just start with the tutorial to parse/create files in various formats within minutes! A .NET library for reading and writing CSV/FixedLength/Xml/JSON ...
- Last updated on Jun 20, 2017
Loading JSON file To load Avro file, use ChoAvroReader component to parse it. Sample below shows how to load Avro file (Emp.avro) (Avro is binary format, sample shows the payload in JSON format for illustration ...
- Last updated on Feb 28, 2021
Writing Avro file To generate Avro file, use the ChoAvroWriter component to generate it. Sample below shows how to create Avro file (Emp.avro) (Avro is binary format, sample shows the payload in JSON format ...
- Last updated on Feb 28, 2021
Loading CSV file To load CSV file, use ChoCSVLiteReader component to parse it. Sample below shows how to load CSV file (Emp.csv) Id,Name
1,Tom
2,Carl
3,Mark Load using iterator using ( var r = new ChoCSVLiteReader ...
- Last updated on Dec 30, 2021
Loading CSV file To load CSV file, use ChoCSVReader component to parse it. Sample below shows how to load CSV file (Emp.csv) Id,Name
1,Tom
2,Carl
3,Mark Load using iterator foreach ( dynamic e in new ChoCSVReader ...
- Last updated on Apr 7, 2023
Writing CSV file To generate CSV file, use the ChoCSVWriter component to generate it. Sample below shows how to create CSV file (Emp.csv) 1,Mark
2,Jason Write list of objects List < ExpandoObject > ...
- Last updated on Jan 9, 2022
Loading FixedLength file To load FixedLength file, use ChoFixedLengthReader component to parse it. Sample below shows how to load FixedLength file (Emp.txt) Id Name
1 Carl
2 ...
- Last updated on Jun 24, 2017
Writing FixedLength file To generate FixedLength file, use the ChoFixedLengthWriter component to generate it. Sample below shows how to create FixedLength file (Emp.txt) Id Name
1 Carl ...
- Last updated on Jun 16, 2017
Loading JSON file To load JSON file, use ChoJSONReader component to parse it. Sample below shows how to load JSON file (Emp.json) [
{
"Id": 1,
"Name": "Mark"
...
- Last updated on Jul 1, 2017
Writing JSON file To generate JSON file, use the ChoJSONWriter component to generate it. Sample below shows how to create JSON file (Emp.json) [
{
"Id":"1",
"Name":"Mark" ...
- Last updated on Jul 11, 2017