Logical operators to allow for querying using $filter.
Namespace:   System.Web.OData.Query
Assembly:  System.Web.OData (in System.Web.OData.dll)
Syntax
[FlagsAttribute]
public enum AllowedLogicalOperators
[FlagsAttribute]
public enum class AllowedLogicalOperators
[<FlagsAttribute>]
type AllowedLogicalOperators
<FlagsAttribute>
Public Enumeration AllowedLogicalOperators
Members
| Member name | Description | |
|---|---|---|
| All | A value that corresponds to allowing all logical operators in $filter. | |
| And | A value that corresponds to allowing 'And' logical operator in $filter. | |
| Equal | A value that corresponds to allowing 'Equal' logical operator in $filter. | |
| GreaterThan | A value that corresponds to allowing 'GreaterThan' logical operator in $filter. | |
| GreaterThanOrEqual | A value that corresponds to allowing 'GreaterThanOrEqual' logical operator in $filter. | |
| Has | A value that corresponds to allowing 'Has' logical operator in $filter. | |
| LessThan | A value that corresponds to allowing 'LessThan' logical operator in $filter. | |
| LessThanOrEqual | A value that corresponds to allowing 'LessThanOrEqual' logical operator in $filter. | |
| None | A value that corresponds to allowing no logical operators in $filter. | |
| Not | A value that corresponds to allowing 'Not' logical operator in $filter. | |
| NotEqual | A value that corresponds to allowing 'NotEqual' logical operator in $filter. | |
| Or | A value that corresponds to allowing 'Or' logical operator in $filter. | 
See Also
System.Web.OData.Query Namespace
Return to top