Hi,
I have a csv file that I import into a DataTable. Furthermore I've created a TableAdapter with several queries. Is it somehow possible to execute the queries associated with the TableAdapter directly on the "in-memory" DataTable (doesn't seem so) or do I always have to write the imported DataTable to the database first and then execute the TableAdapter queries on the persisted data? I wanted to use the datatable directly as it is a small project and it's not worth converting the data back and forth from value object to datatable or use OR mappers.
Thanks in advance!
Best regards,
Andreas
PS: It is only a small amount of data, so the memory impact should not be that big.