Aller au contenu principal

how to loop through a DataTable in Workflow Designer

Commentaires

2 commentaires

  • 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

Vous devez vous connecter pour laisser un commentaire.