Thanks
Paul
CurrentRow.SetAdded()
You could also add an overload yourself by creating your own BO base class that inherits from the BusinessLayer then you inherit your BOs off of that class which has the NewRow overload you are expecting.
We can add this to the list, but it won't make it into 1.6.1.
No problem on when it gets in. I have it as an overloads in my base bus layer but i was just worried about if you change something in newrow might break my overload.
On the CopyDatafrom method does that copy the entire data data table or just the current row?
You can have it copy from the DataTable or the DataView. So if you use the DataView you could filter out just that one record then the CopyDataFrom would only move in that one record. This is the second parameter of the CopyDataFrom method that specifies the data that will be copied in and from where.
FYI....all DataTables already have a view attached to them so this is the view that will be used when using that option: