how to add new Field and new getter/setter methods to a class object
hi all
i have one scenario where new table gets created run time, where the columns of that table and data type of the columns can be configured by user.
I have to create DTO, referencing this new table.
So is it possible to add new fields and getter setter methods of that fields to be created in the class object of the blank DTO so that this new DTO can contain the data of this new table.
thanks

