Hi everyone, I trying to learn LINQ. I’m facing some trouble, I want to JOIN two datatables and I have written sql quey for it below. Can someone help me how do I use it in UiPath. Thank you
Select field2 from table1 where field1
In (select field1 from table2)
Union
Select field1 from table1 where
Field1 not in (select field1 from table2)
Union
Select field1 from table2 where
Field1 not in (select field1 from table1);