Is there a way to execute expressions based on multiple conditions:
e.g.
If Condition1(a boolean param) is true AND condition2(boolean derived from param) is also true, then execute expression A. Similarly, condition1 false AND condition2 false -> expression D
I'm aware of the "union" where where not technique, but I think I'd need to nest the union structure inside another such union:
but I couldn't get this syntax^ to work.
Any suggestion is appreciated(even if not directly about achieving nested conditional execution) TIA!