I have 2 list List<(string, string, string)>
I would like to print out a comparison of the 2 lists by the first tuple element e.g. ("123","4","1") and ("123","a","b") from list 1 and list 2 are equivalent.
Is there a simple way to print out a comparison similiar to a SQL full join? If element exist both list get the 2 tuples otherwise specify that it is unique to 1 list.
("123","4","1") and ("123","a","b")
("23","4","1") and ("23","a","b")
NULL and ("423","a","b")
("77","4","1") and NULL