I am using CodeEffects rule editor for writing business rules in our application. I have many if-else conditions which are actually nested-if type rules. With no support of nested-if, I need to re-write all if conditions every time.
But I can't find any way to write rule as mentioned below.
- if (Condition1)
- (
- if (sub-condition1)( ....)
- else if (....)
- )
- (
- else
- (
- ....
- )
- (