Hi.
I have an application connected to an access database. I am using a Table Adapter to insert/get data from the table.
I have an object that represents a specific table from the db with more that 50 fields that i need to insert in the database.
How can i serialize that object into something like this (attrib1,atrib2 ...) so i can use the insert method of table adapter?
I can get all the attributes of the object one by one but that would be very time consuming.