I have two, single column tables from two different sources that I'd like to compare and filter the first table based on whether the values are present in any record of the second table in the different source collection. Example:
Table1
----------
Value1
Value2
Value4
Value5
Table2
---------
Value2
Value3
Value5
I would then like Table1 to be filtered to look like
Table1
--------
Value2
Value5
I'm trying to avoid creating a new table in this scenario, which has complicated things a bit. I specifically need to filter the original table, since I'm trying to filter the default items of a combobox and it seems to be very particular about the Items table being the same source as the DefaultSelectedItems table.