DataFilterConditions Enumeration |
To get started, call one of the following methods:
- Anysense.API.Client.V1.ApiClient.Create
- Anysense.API.Client.V1.ApiClient.CreateAsync
- Anysense.API.Client.V1.ApiClient.CreateWithToken
- Anysense.API.Client.V1.ApiClient.CreateWithTokenAsync
See Anysense.API.Client.Shared.BaseClient<T> for documentation on these methods.
Note: This API is now obsolete.
List of all conditions available for filtering in a
DataFilter.
Namespace: AnySenseService.Entities.API.PublicAPI.V1.DTOs.FilterAssembly: AnySenseService.Entities.API.PublicAPI.V1 (in AnySenseService.Entities.API.PublicAPI.V1.dll) Version: 1.31.10+d671d89394079ff2411e503098d3578f08c2de86
Syntax [ObsoleteAttribute("Removed IN API 1.22")]
public enum DataFilterConditions
Members Member name | Value | Description |
---|
Equals | 0 |
Values should be equals
|
NotEquals | 1 |
Values should not be equal
|
LesserThan | 2 |
Value should be lesser than the defined value (nummeric only)
|
GreaterThan | 3 |
Value should be greater that the defined value (nummeric only)
|
Contains | 4 |
Value should contain the defined value (string values)
|
NotContains | 5 |
Value should not contain the defined value (string values)
|
StartsWith | 6 |
Value should start with the defined value (string values)
|
EndsWith | 7 |
Value should end with the defined value (string values)
|
In | 8 |
Value should exist in the sequense (nummeric only)
|
OlderThanDays | 9 |
Value should be older than the defined days (dates only)
|
OlderThanMonths | 10 |
Value should be older than the defined months (dates only)
|
OlderThanYears | 11 |
Values hould be older than the defined years (dates only)
|
NotOlderThanDays | 12 |
Value should not be older than the defined days (dates only)
|
NotOlderThanMonths | 13 |
Value should not be older than the defined months (dates only)
|
NotOlderThanYears | 14 |
Value should not be older than the defined years (dates only)
|
OlderThanHours | 15 |
Value should be older than the defined hours (times only)
|
OlderThanMinutes | 16 |
Value should be older than the defined minutes (times only)
|
NotOlderThanHours | 17 |
Value should not be older than the defined hours (times only)
|
NotOlderThanMinutes | 18 |
Value should not be older than the defined minutes (times only)
|
See Also