Get the data from collection without loop

Azharudeen

New Member
Hi Guys,
I have a scenario,

How to get the data from collection row by row like the loop usually does. But I need to get the data from collection without using a loop. How to do that.

Thanks in advance.
 

ewilson

Member
I’d say your only option would be drop into a Code stage where you could work with the Collection in its normal state which is a .Net DataTable.

However, you’d still need to perform a loop to process every row. You could use Linq if you’re trying to query the data. ‍♂️

Eric
 
Top