WordLevenshteinFilter Class |
Namespace: Telogis.GeoBase.Transactional
The WordLevenshteinFilter type exposes the following members.
Name | Description | |
---|---|---|
WordLevenshteinFilter |
Creates a WordLevenshteinFilter where the given column of a record has a value
that is within a specified WordLevenshtein distance to a query string.
|
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.) |
// The filter refines the records to those whose poi_name column value has a distance less than // or equal to 3 from the string "Lanscaping". using (var lev = new GeoBase.Indexes.WordLevenshtein("Lanscaping", 5, 1, 4)) { tblPoi.Indexes["poi_name_idx"].Query(new WordLevenshteinFilter("poi_name", lev, 3)); }