Replies: 1 comment 1 reply
-
I see a c# expression issue here . string.Join accepts string as first parameter. So the expression should be Also based on the type of Arrangement, you might want to do Here is a working example for the above scenario - https://dotnetfiddle.net/hUTRf1 |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have an array of objects and object as a property 'Arrangement' and I would like to return all the unique values of this property. What is the best way to do this. Currently, I have the following code which is not working.
"Actions": {
"OnSuccess": {
"Name": "OutputExpression",
"Context": {
"Expression": "string.Join(',', input1Select(Arrangement).Distinct())"
}
}
}
Beta Was this translation helpful? Give feedback.
All reactions