Hello everyone…
My bot was running fine before. I updated UiPath to newer version 2022.10.1(community).
Now it’s giving me error in “Add Data Row” like
error BC32043: Too many type arguments to ‘Func(Of Out TResult)’. error BC36625: Lambda expression cannot be converted to ‘Expression(Of Func)’ because ‘Expression(Of Func)’ is not a delegate type.
Hi, I have the same problem. I needed to add a value into array row and get this errror, when I delete the variable, it starts to work again. Weirdly enough I can add as many empty or hardcoded strings and it still works but when I add a variable it shows the error. Import of Linq didn’t help. Seems like the ArrayRow can handle only so many variables.
I also got the same error after converting my Windows-Legacy project to Windows with the new update. My Add Data Row activity worked fine before converting. The array row I wish to add has 19 elements, but the error disappears if I only keep 16. Import of System.Linq did not work for me also, and I have tried initializing as New Object before the Array Row entry. Hoping to follow to see how any solutions are achieved.
I solved this issue by dividing array to two smaller arrays, then concatenating smaller arrays into final big array which will work fine in “Add Data Row” activity.