In my BizTalk Decide shape, How can I handle below conditions in one decide shape node?
code == 'code1'
code == 'code2'
code == 'code3'
code == 'code4'
I'm trying to do, this by
(code == 'code1' Or code == 'code2' Or code == 'code3' Or code == 'code4' )
But It is not working, please suggest.
The Decide Shape takes any (mostly) C# formatted condition so you would use:
(code == "code1") || (code == "code2") || (code == "code3") || (code == "code4")
You have to use the double quote since the single quote specifically means char data, not string.