Defines constants, enums, and utility functions for use with the Table service.
- Source:
Members
-
<static, constant> EdmType :string
-
Edm types.
Type:
- string
- Source:
Properties:
Name Type Default Description STRING
string Edm.String BINARY
string Edm.Binary INT64
string Edm.Int64 INT32
string Edm.Int32 DOUBLE
string Edm.Double DATETIME
string Edm.DateTime GUID
string Edm.Guid BOOLEAN
string Edm.Boolean -
<static> entityGenerator
-
A helper to create table entities.
- Source:
Example
var entGen = TableUtilities.entityGenerator; var entity = { PartitionKey: entGen.String('part2'), RowKey: entGen.String('row1'), boolValue: entGen.Boolean(true), intValue: entGen.Int32(42), dateValue: entGen.DateTime(new Date(Date.UTC(2011, 10, 25))), };
-
<static, constant> PayloadFormat :string
-
Payload Format.
Type:
- string
- Source:
Properties:
Name Type Default Description FULL_METADATA
string application/json;odata=fullmetadata MINIMAL_METADATA
string application/json;odata=minimalmetadata NO_METADATA
string application/json;odata=nometadata -
<static, constant> QueryComparisons :string
-
Filter property comparison operators.
Type:
- string
- Source:
Properties:
Name Type Default Description EQUAL
string eq NOT_EQUAL
string ne GREATER_THAN
string gt GREATER_THAN_OR_EQUAL
string ge LESS_THAN
string lt LESS_THAN_OR_EQUAL
string le -
Permission types.
Type:
- string
- Source:
Properties:
Name Type Default Description QUERY
string r ADD
string a UPDATE
string u DELETE
string d -
<static, constant> TableOperators :string
-
Defines the set of Boolean operators for constructing queries.
Type:
- string
- Source:
Properties:
Name Type Default Description AND
string and NOT
string not OR
string or