How to use Datatable (or any other object) in Queue (Orchestrator):
Add to queue:
- In Studio, import Newtonsoft.Json namespace
- Serialize datatable using the following command (output string): JSONConvert.SerializeObject(dt)
- Send the string to queue
Consume queue:
- Get the string from queue
- Use Deserialize json activity (from Uipath.Web.Activities package) using TypeArgument DataTable property
- Use the outputed datatable for your workflow.