I have a plugin with import business logic to import records to custom entity. My plugin is sync mode. The plugin is trigger by a workflow that implements a wait condition. If my plugin is being executed without workflow works successful, but if it's being
triggered by workflow displays the next error when the next line is executed.
importFile.Id = orgService.Create(importFile);
The Error:
System.ArgumentNullException: Value cannot be null.Parameter name: str
Therefore, Could not be supported executing code to create a import job from async mode?
Thanks