Hello guys!
I'm building an application using CRM 2013 Unified Service Desk (USD). Right now, I'm creating a conditional action call from a hosted control to another. So far I got it working with a single expression, like:
"[[Data1]]" == "Value1"
But I've gone further down the rabbit's hole and now I need to query two values with an OR operator:
"[[Data1]]" == "Value1" || "[[Data2]]" == "Value2"
While the first example works fine, using the || operator does not. I've already tried using some variations, like expr OR expr, but the evaluation fails.
There's no documentation on MSDN covering the conditional part of an action call, so I need help figuring this one out.