Linq for adding each List item as individual Column Value

Hello Community,
I have a list with certain values, for eg,
list1=[a,b,c,d,e]
I want each item in the list in different columns of same row,
Please help me with the LinQ Query.
Regards;)

You don’t need Linq.

Add Data Row and put {a,b,c,d,e} in the Array Row property.

Thanks for the Information @postwick ,
But I’m picking the each item of the list from UI, so after each transaction Item the items in the List changes, So I want to use Linq.
Regards;)

Again, you don’t need to use Linq. Just use the Add Data Row activity and put the values (or list) directly into the Array Row property.

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.