Hi,
Are you referring to the CopyDataFrom having an overload to prevent the RowState from changing? I assume that is what you are referring to, which would be easy to do, but I just wanted to clarify. Thanks.
Yes.
Just FYI, you could force this right now in another line of code:
MyBo.CurrentDataTable.AcceptChanges()
Currently, SF BO always acceptchanges after copy data. It caused datarow.rowstate = unchanged. I need a overload to preserve it so that copied datarow.rowstate = added / modified.
Thank you