DataTable1 join DataTable2

I want to merge data table with Linq regardless of duplicates

Dt1 Dt2
Name Name
test1 test2 test1 test2
A1 A2 A1 A2
A2 A3 A2 A3
A3 A4 A3 A4

result
test1 test2
A1 A2
A2 A3
A3 A4
A1 A2
A2 A3
A3 A4

Did you try join Data Tables activity?

Why don’t you use Merge Data Table Activity?

I wanted to study LinkQ

yes, I wanted to study LinkQ

Dt1.AsEnumerable.Concat(Dt2.AsEnumerable).CopyToDataTable

thank you