Query filter used to narrow down query results.
Inheritance Hierarchy
Aerospike.ClientFilter
Namespace: Aerospike.Client
Assembly: AerospikeClient (in AerospikeClient.dll) Version: 5.1.1.0 (5.1.1)
Syntax
C#
public sealed class Filter
Methods
Name | Description | |
---|---|---|
![]() ![]() | Contains(String, IndexCollectionType, Int64) |
Create contains number filter for query on collection index.
|
![]() ![]() | Contains(String, IndexCollectionType, String) |
Create contains string filter for query on collection index.
|
![]() ![]() | Equal(String, Int64) |
Create long equality filter for query.
|
![]() ![]() | Equal(String, String) |
Create string equality filter for query.
|
![]() ![]() | GeoContains(String, String) |
Create geospatial "containing point" filter for query.
|
![]() ![]() | GeoContains(String, IndexCollectionType, String) |
Create geospatial "containing point" filter for query on collection index.
|
![]() ![]() | GeoWithinRadius(String, Double, Double, Double) |
Create geospatial "within radius" filter for query.
|
![]() ![]() | GeoWithinRadius(String, IndexCollectionType, Double, Double, Double) |
Create geospatial "within radius" filter for query on collection index.
|
![]() ![]() | GeoWithinRegion(String, String) |
Create geospatial "within region" filter for query.
|
![]() ![]() | GeoWithinRegion(String, IndexCollectionType, String) |
Create geospatial "within region" filter for query on collection index.
|
![]() ![]() | Range(String, Int64, Int64) |
Create range filter for query.
Range arguments must be longs or integers which can be cast to longs.
String ranges are not supported.
|
![]() ![]() | Range(String, IndexCollectionType, Int64, Int64) |
Create range filter for query on collection index.
Range arguments must be longs or integers which can be cast to longs.
String ranges are not supported.
|
See Also