rules-framework icon indicating copy to clipboard operation
rules-framework copied to clipboard

[Feature Request]: We want to be able to use Arrays of enum values as condition nodes

Open jdromeiro opened this issue 2 years ago • 0 comments

Is your request related to a problem you have?

Yes, I was trying to set a rule condition with an array of enum values, but apparently that's not possible:

 .WithCondition(c => c
                        .And(a => a
                            .Value(ConditionTypeCode.EntityType, Operators.Equal, (int)EntityType.User)
                            .Value(ConditionTypeCode.JournalType, Operators.In, new JournalType[] { JournalType.Sale, JournalType.SaleCancelled } )

Describe the solution you'd like

Solution may be to change the class ValueConditionNodeBuilder.cs to allow more types than the one present there in the Build() method.

Are you able to help bring it to life and contribute with a Pull Request?

No

Additional context

No response

jdromeiro avatar Dec 06 '23 14:12 jdromeiro