2.23 QueryMeasureExpression

The QueryMeasureExpression element specifies a reference to a named property on an entity. The QueryMeasureExpression element is of type QueryExpression.

Measure: Specifies the name of the property. The Measure element MUST be of type PropertyReference. The Measure element MUST be specified and MUST NOT be specified more than once.

Target: Specifies the target entity containing the item described by the Measure element. The Target element MUST be of type EntityReference. The Target element MUST be specified and MUST NOT be specified more than once.

The following is the XSD for the QueryMeasureExpression element.

   <xs:complexType name="QueryMeasureExpression">
     <xs:complexContent>
       <xs:extension base="QueryExpression">
         <xs:sequence>
           <xs:element name="Measure" type="xs:string" />
           <xs:element name="Target" type="xs:string" />
         </xs:sequence>
       </xs:extension>
     </xs:complexContent>
   </xs:complexType>