Group: StrataFrame Developers
Posts: 3K,
Visits: 2.5K
|
If you are copying data into a business object, only the columns within the destination BO will be used. Any columns that exist on the source BO but not the destination BO will be dropped. However, if you want to copy only a subset of the columns, you will need to create an interim DataTable with the columns that you want, copy the data into that table by cycling through the desired records, and then call the CopyDataFrom method and pass the temporary DataTable.
|