Zum Hauptinhalt gehen

how to loop through a DataTable in Workflow Designer

Kommentare

2 Kommentare

  • Malcolm Walker
    • Community-Manager
    Hi Chris,

     

    The .Rows member of a DataTable is a DataRowCollection, which doesn't advertise itself as an Enumerable object.

     

    You can use a Linq expression to transform it into an enumerable object, though: dataTable1.Rows.OfType(Of DataRow) Regards,

     

    -Malcolm
    0
  • Permanently deleted user
    Perfect! Thanks Malcolm.
    0

Bitte melden Sie sich an, um einen Kommentar zu hinterlassen.