Hello guys , i am trying to join two tables where Column a on dt1 = Column a on dt2 And Also Column b on dt1 = Column b on dt2 .
i have this
(From a In milliFileDT.AsEnumerable() Join b In dtReport.AsEnumerable() On a(“BotUniqueID”).ToString() Equals b(“BotUniqueID”).ToString() and CDbl(a(“LCY_AMOUNT”)) = CDbl(b(“amount”)) select a).CopyToDataTable
If you are interested in inner, full or left join, you can use Join DataTable activity and that will allow you to choose the input datatable and add conditions as required.