Schema - "complex" criteria

Wise forum folks,

One more question for you.  XFM Schema appears to have difficulty with interpreting "complex" criteria (e.g., criteria that reference more than one attribute), such as:

     ([attribute1]>0) && ([attribute2]<100)

Or even better:

     COMPARE("[attributea]","True","") && ([attributeb]>0)

I couldn't find guidance in the Help files addressing situations like this.  Has anyone else tried something similar?

Thanks.

Janice

Parents Reply
  • Also, for what it's worth, what's the difference between the following criteria expressions?  Both evaluate a feature's property value as a string against the string value "compareValue".  I get that the second uses the C string compare function "strcmp", but what's really the difference here?  Just curious.

        COMPARE("[feature_instance_alias:property_name]", "compareValue", "")

        0==strcmp("[feature_instance_alias:property_name]","compareValue")

Children