expression - BizTalk - Multiple Conditions in Decide Shape -


in biztalk decide shape, how can handle below conditions in 1 decide shape node?

code == 'code1'
code == 'code2'
code == 'code3'
code == 'code4'

i'm trying do,

(code == 'code1' or code == 'code2' or code == 'code3' or code == 'code4' )

but not working, please suggest.

the decide shape takes (mostly) c# formatted condition use:

(code == "code1") || (code == "code2") || (code == "code3") || (code == "code4")

you have use double quote since single quote means char data, not string.


Comments

Popular posts from this blog

c# - How to get the current UAC mode -

postgresql - Lazarus + Postgres: incomplete startup packet -

javascript - Ajax jqXHR.status==0 fix error -