Copy list to specific datatable column using linq

@qwerty1

In some or the other way you have to use for each to load the data

One thing you can try is to use generate datatable activity and pass the list as string concatenated with new line.this will generate a datatable with one column and all the values as rows

String.Join(Environment.NewLine,strlist)

Cheers

2 Likes