Description
The filter condition, analogous to the Where clause of SQL query. The filter condition, analogous to the WHERE clause of an SQL query.
Diagram
Overview
 |
Where
The filter condition, analogous to the Where clause of SQL query. The filter condition, analogous to the WHERE clause of an SQL query.
 |
Sequence
 |
Field 0..∞
The field to filter by. The field to filter by.
 |
Name required xs:string
The name of the field. The name of the field.
|
 |
Value required xs:string
The condition expression applied to the field. The condition expression applied to the field.
|
|
|
|
Source
<xs:element name="Where" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:annotation>
<xs:documentation>
The filter condition, analogous to the Where clause of SQL query.
</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element minOccurs="0" maxOccurs="unbounded" name="Field">
<xs:annotation>
<xs:documentation>
The field to filter by.
</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:attribute name="Name" use="required" type="xs:string">
<xs:annotation>
<xs:documentation>
The name of the field.
</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="Value" use="required" type="xs:string">
<xs:annotation>
<xs:documentation>
The condition expression applied to the field.
</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
|
See Also