The MergeDataTable() method is used to merge two separate data tables that have the same structure down to one DataTable, removing conflicting records by testing the PK values.
I have temporary BO to allow user to edit records which is in un-normalized format. Then, I want to add these records back to normalized table - ParentTable and ChildTable.
After saved,User may want retrieve and edit/delete records in this temporary BO. Any simple way to "merge" back the records to database? Does BusinessLayer.MergeDataTable() do what I need?
Thank you