If you want to use activities, then you should use join every 2 datatables, until you are done, or you can use linq expressions to do them all in one like this:
Dim joinedResult = _
From p In PERSON.AsEnumerable() _
Join g In GENDER.AsEnumerable() _
On g.Field(Of string)("gender_code") Equals p.Field(Of string)("gender_code") _
Join e In ETHNICITY.AsEnumerable() _
On e.Field(Of STRING)("ethnic_code") Equals p.Field(Of string)("ethnic_code") _
Select _
id = p.Field(Of String)("person_id"), _
name = p.Field(Of String)("name"), _
gender = g.Field(Of String)("gender_description"), _
ethnicity = e.Field(Of String)("ethnic_description")
In the above script, ‘joinedResult’ is a list or data table variable?
I don’t have coding background so trying to understand how Linq works here in uipath.
I am trying to get the result into DataTable.
Could you please guide me, What is right place/website/reference to learn these coding concepts which commonly required in UiPath development, such as above Linq?