Build a datarow using asign activity

How to build a datarow datatype variable using asign activity with some values in it

hey @Chaitanya_podilapu
use Assign activity like this
dataRowVariable = DataTableVariable.Rows.Add({“Name”,“12”,“12345789”})

How to select particular field from that datarow like Name, 12, 123456789

1 Like

you want to select??
then you can loop through that particular column!

I’ve got only single row in it.

row(0).ToString where the 0 is the column index…

@Chaitanya_podilapu

If you want multiple Columns data then try below way.

                 row(0).Tostring+","+row(1).Tostring+","+row(2).Tostring