WhereClause Class
WhereClause Class
Contains the entity property/values filters to apply to the results returned by the points of interest find methods (FindServiceSoap.FindByID, FindServiceSoap.FindNearby, FindServiceSoap.FindByProperty, FindServiceSoap.FindNearRoute). Specifies the entity properties and values to match.
Public Class WhereClause Inherits System.Object
[C#]
public class WhereClause : System.Object
Public Properties
Name | Description |
---|---|
SearchOperator | A flag (SearchOperatorFlag enumeration) that indicates whether to return results that meet all the property/value conditions (And) or any one of the property/value conditions (Or) identified in the SearchProperties property. Default is And. |
SearchProperties | An array of property/value pairs (EntityPropertyValue[] objects) to match. Valid range is 0 through 10. |
Remarks
- This object cannot not be used in conjunction with the FilterExpression object in a FindFilter object. An exception is thrown if both WhereClause and Expression are used in a FindFilter object.
See Also
FindFilter Class | FindServiceSoap.FindNearby Method | FindServiceSoap.FindNearRoute Method | FindServiceSoap.FindByID Method | FindServiceSoap.FindByProperty Method