You are not going to want to delete through the CurrentRow...this may potentitally wreak havoc on a number of different levels. First of all you should really use the following command:MyBO.DeleteCurrentRow(True)
The above command will only mark the row as deleted (the True) and not go back to the server, obviously False will go back to the server. Second, if you don't want to commit the changes, then you can call the following command:
MyBO.CurrentDataTable.AcceptChanges()
This wasy you are staying within the logic of the BO. Even if you want to call the delete on the data table directly would be safer than passing of the row reference and the smoking it:
MyBO.CurrentDataTable.Rows(MyBO.CurrentRowIndex).Delete()
Any of these are going to be much safer. I recommend the first option as it remains within the BO logic.