I have one data table which I want to convert to parquet file and upload to blob storage. But i don't have the static schema so how can i do that ?
Asked
Active
Viewed 991 times
1 Answers
0
Use Cinchoo ETL - an open source library to upload the datatable to azure storage
Here is working sample
DataTable dt = new DataTable();
using (var w = new ChoParquetWriter("Parquet file stream / path"))
{
w.Write(dt);
}
For more information, refer this link below

Cinchoo
- 6,088
- 2
- 19
- 34