Servant-Software-LLC / FileBased.DataProviders

ADO.NET & EF Core Data Providers for common serializable formats (JSON, XML, and CSV) stored to disk.
2 stars 1 forks source link

CSV provider to infer data types #48

Closed DaveRMaltby closed 1 month ago

DaveRMaltby commented 1 year ago

The CsvDataReader does provide in its constructor, a parameter called DataTable schemaTable. This parameter then could be used to provide a schema. We would need a means of storing the schema of the CSV field, maybe use an XSD file like we are for XML files? (or some other format?)

DaveRMaltby commented 1 month ago

Using Microsoft.DataAnalysis.DataFrame now to infer data types.