ComponentOne ADO.NET DataExtender
ADO.NET DataExtender Task-Based Help / Composite Row Editing / Modifying the Base DataTable(s)
In This Topic
    Modifying the Base DataTable(s)
    In This Topic

    To observe DataView row actions for an OUTER JOIN, complete the following steps:

    1. In the Orders DataTable, change the value of CustomerID column of the previously added row to VINET, end editing and observe that this value has changed in both corresponding rows of the DataView.
    2. In the Order Details DataTable, delete one of the newly added rows and see that the corresponding composite row was deleted from DataView.

      Then delete the other newly added row and observe that the corresponding row has not disappeared from DataView, but the values of columns corresponding to the Order Details DataTable became null. This is because of the OUTER join.


      Now delete the row from the Orders DataTable and see that the corresponding row disappeared from DataView.

    See Also