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