Is it alright for a Workflow to have an In or Out argument of type “DataTable”? Like this
Will it cause performance issue if we pass the datatable via Invoke Workflow File activity?
Is it alright for a Workflow to have an In or Out argument of type “DataTable”? Like this
Hi,
I think ArgumentType of in_dataTable is DataTable.
It’s no problem if datatable is passed as argument.
Please note that datatable is passed by reference (not value)
Regards,
There is no issue.
Just noticed you missed to change the datatype of in_dataTable argument. Change it to DataTable
Change the argument type to Datatable instead of string and you can pass the datatable variable directly smoothly.
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.