Hi,

I'd like to know if it's possible to bind two DataTables to an third DataTable?

Or maybe there is an other way to solve my problem:

I have two DataTables in a DataSet an I have to join them an show them in a DataGridView.
But it is important, that all changes will be notified to the two DataTables in the DataSet.
So i cant simple merge the two tables to a third one.


The only solution which I found is to bind a new third DataTable two the DataGridView and handle the Changes manuel on a CellValueChanged-Event.
But i cant belive, that this is the only solution to handle this issue.