Hi,
I have two tables in an XML Dataset. T1, T2. Each of the tables has a ID column.
T1 has a list of Customers T2 has a list of Orders
I want to build a LINQ query that returns only the ID of the customers that do not have orders. In other words customer ID's that do not exist in the T2 table.
Oh yea, I'm using C#
Thanks!