How to get all rows from TableA that are not in TableB where the schema of TableA is different to TableB(they are different typed DataTable classes coming from different dbms)?

I need all country-rows where country_id is not in Country as idCountry.
This does not work because they have a different schema(src.country and dest.Countryare different DataTable-classes):
Dim srcNotInDest = src.country.Except(dest.Country)
src and dest are strong typed DataSets
Note: not necessarily VB.NET
I assume that i need to provide an IEqualityComparer as second parameter but don't know how. Maybe there is another(faster) approach to identify new rows.
Background:
I'm importing tables from a MySQL database into a SQL-Server database. It's sufficient to check only the primary key and not to compare the content of the rows. Although this example table contains only few rows but two tables contain ~100000 rows, hence performance matters on synchronizing source and destination.