The <Right> element defines the right side of the SQL statement.
ConditionSearchNode no parameters:
<SearchNode xsi:type="ConditionSearchNode" Op="Equal">
<Left xsi:type="AttributeSearchNode"
Path="folderObject.author" />
<Right xsi:type="StringSearchNode"
Value="Armando Trovati" />
</SearchNode>
Attributes found in the Right node using no parameters:
xsi:type |
The type of attribute or element type to search. Allow values are: StringSearchNode, IntegerSearchNode, DateTimeSearchNode, FloatSearchNode, DoubleSearchNode, LiteralListSearchNode. |
Value |
The value of the attribute or element to search for. It is dependant on the xsi:type. |
ConditionSearchNode using a parameter:
<SearchNode xsi:type="ConditionSearchNode" Op="In">
<Left xsi:type="AttributeSearchNode"
Path="folderObject.folderRef" />
<Right xsi:type="VariableSearchNode"
Name="folderIds" Type="IdList" />
</SearchNode>
Attributes found in the Right node using a parameter:
xsi:type |
Declaration that search will use a parameter: VariableSearchNode |
Name |
The name of the parameter. This name is used when the search is executed as pars=Name:Value |
Type |
The type of the parameter, that matches the type of attribute being searched. Allowed values are: String, Integer, DateTime, Float, Double, IdList |
See also: