Class QueryComparisons
- Namespace
- Microsoft.WindowsAzure.Storage.Table
- Assembly
- Microsoft.WindowsAzure.Storage.dll
Defines the set of comparison operators that may be used for constructing queries.
public static class QueryComparisons
- Inheritance
-
QueryComparisons
- Inherited Members
Fields
Equal
Represents the Equal operator.
public const string Equal = "eq"
Field Value
GreaterThan
Represents the Greater Than operator.
public const string GreaterThan = "gt"
Field Value
GreaterThanOrEqual
Represents the Greater Than or Equal operator.
public const string GreaterThanOrEqual = "ge"
Field Value
LessThan
Represents the Less Than operator.
public const string LessThan = "lt"
Field Value
LessThanOrEqual
Represents the Less Than or Equal operator.
public const string LessThanOrEqual = "le"
Field Value
NotEqual
Represents the Not Equal operator.
public const string NotEqual = "ne"