I have 4 very big tables (round 1mil records in each).
I use linq to put them into the same class type then i union them in memory.
var t = table1.union(table2)
Is there anyway i can do union within the statement. Doing it in memory is to slow.
Any suggestions welcome