Jump to: navigation, search

Difference between revisions of "Activity:AddSearchCriterion (Activity)"


Line 5: Line 5:
 
| imagecaption = Activity AddSearchCriterion
 
| imagecaption = Activity AddSearchCriterion
 
| purpose = Adds a new search criterion to a query
 
| purpose = Adds a new search criterion to a query
| category = Object Primitives
+
| category = UBIK Object Primitives
 
| returns = True if added successfully
 
| returns = True if added successfully
 
| version = 2.3+
 
| version = 2.3+

Revision as of 15:14, 8 January 2015

Add Search Criterion
Name AddSearchCriterion
Purpose Adds a new search criterion to a query
Category UBIK Object Primitives
Returns True if added successfully
Version 2.3+

The AddSearchCriterion activity adds a new search criterion to a given query using the given parameters.

Arguments

Argument Type Direction Purpose
And Boolean In If true, criteria are combined using AND (default);
if false, criteria are combined using OR
Index Integer In Property value index (indexed properties only required)
Operator QuerySearchItemOperator In Search operator used
PropertyName String In Name of property to search the value for
PropertyValue T In Property value to be searched
Query Query In Query instance
Result Boolean Out True, if added successfully

Usage

This activity adds a new search criterion to a given query using the parameters defined in the arguments. Once the query is evaluated the system searches for the value PropertyValue in the property PropertyName. For indexed properties an index can be defined as well. Multiple search criteria are either combined with AND or OR, depending on And argument.

See also