ContainsFilter Class |
Namespace: Telogis.GeoBase.Transactional
The ContainsFilter type exposes the following members.
Name | Description | |
---|---|---|
ContainsFilter(String, String) |
Creates a ContainsFilter where the given column of a record should contain a particular
string. The string comparison is case insensitive.
| |
ContainsFilter(String, LatLon) |
Creates a ContainsFilter where the given column of a record should contain the specified
LatLon .
| |
ContainsFilter(String, String, String) | Initializes a new instance of the ContainsFilter class |
Name | Description | |
---|---|---|
Equals | Determines whether the specified object is equal to the current object. (Inherited from Object.) | |
GetHashCode | Serves as the default hash function. (Inherited from Object.) | |
GetType | Gets the Type of the current instance. (Inherited from Object.) | |
ToString | Returns a string that represents the current object. (Inherited from Object.) |
// This filter returns records where the 'customer_name' column contains // the string 'Ch'. Matches would include both 'Charles' and 'Michal'. ContainsFilter cf = new ContainsFilter("customer_name", "Ch");