Which activity can be used to loop through each row from a datatable?
Answers
Answered by
0
For Each Row activity can be used to loop through each row from a data table.
Explanation:
- For Each row is used to loop through each row from a database. Its syntax would be for each (DataRow row in dt.Rows). For Each Row is used to check if any particular rows have values or not.
- We can traverse row by row with the help of the ForEachRow method. We can also insert and delete any particular values while traversing through rows in a data table with the help of the ForEachRow method in any database.
Similar questions