Table of Contents

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

string

GreaterThan

Represents the Greater Than operator.

public const string GreaterThan = "gt"

Field Value

string

GreaterThanOrEqual

Represents the Greater Than or Equal operator.

public const string GreaterThanOrEqual = "ge"

Field Value

string

LessThan

Represents the Less Than operator.

public const string LessThan = "lt"

Field Value

string

LessThanOrEqual

Represents the Less Than or Equal operator.

public const string LessThanOrEqual = "le"

Field Value

string

NotEqual

Represents the Not Equal operator.

public const string NotEqual = "ne"

Field Value

string