I have a typed DataTable generated by Visual Studio from a database schema and I would like to populate it from a CSV file.
I have seen a solution for a plain DataTable but it wouldn't work for a typed DataTable.
Obviously I could read a DataTable first and then copy it row-by-row, field-by-field into my typed DataTable but I was hoping for a more elegant solution.