I have 2 DataTable and I want to create a third DataTable that contais the difference between DataTable 1 and DataTable 2.
For example, DataTable1 has the original data, and the DataTable 2 is just a copy, like a replication. But when you insert a new row in DataTable1, the DataTable2 has just insert the same row. Nowaday my code do a compare between DataTable1 and DataTable2, if not equals (1 row or more was inserted), DataTable2 record all data from DataTable1 again.
How can I do a select command, that do this difference and record those datas in a third DataTable ?