Jump to content

Combiner - Matching based on multiple states


Recommended Posts

Both member and parent have match expressions and each expression can have as many components as you want. But they must ultimately resolve to a single value.


For example, you could match on a combination of priority and color. Assuming priority has a value of 1-5 and color has a value of 1-4, you could have a match expression like "Priority*10 + Color", so a green high priority (perhaps a value of 53) would only be matched with other green high priorities.


To do more sophisticated matching than that you would probably need to use process logic. Perhaps put the members in a storage and use the seach to select the "best" items from that storage.

Link to comment
Share on other sites

×
×
  • Create New...