In the readme, you say that:
ADO.NET is flat-table oriented (sublists/subfields are not supported, despite these being probably among the best features of DuckDB).
But it's not true. The DbDataReader has a method GetFieldValue<T> that can be used to read any type of data if the provider implements it. For example, the Postgres provider supports reading lists, enums, and composite types (same as a struct in DuckDB): PostgreSQL enums and composites
DuckDB.NET supports reading lists and enums too. Struct support is not yet implemented but is planned. Structs and Maps are also supported.
In the readme, you say that:
But it's not true. The
DbDataReaderhas a methodGetFieldValue<T>that can be used to read any type of data if the provider implements it. For example, the Postgres provider supports reading lists, enums, and composite types (same as a struct in DuckDB): PostgreSQL enums and compositesDuckDB.NET supports reading lists and enums too.
Struct support is not yet implemented but is planned. Structs and Maps are also supported.