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 STRINGstring Edm.String BINARYstring Edm.Binary INT64string Edm.Int64 INT32string Edm.Int32 DOUBLEstring Edm.Double DATETIMEstring Edm.DateTime GUIDstring Edm.Guid BOOLEANstring 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_METADATAstring application/json;odata=fullmetadata MINIMAL_METADATAstring application/json;odata=minimalmetadata NO_METADATAstring application/json;odata=nometadata -
<static, constant> QueryComparisons :string
-
Filter property comparison operators.
Type:
- string
- Source:
Properties:
Name Type Default Description EQUALstring eq NOT_EQUALstring ne GREATER_THANstring gt GREATER_THAN_OR_EQUALstring ge LESS_THANstring lt LESS_THAN_OR_EQUALstring le -
Permission types.
Type:
- string
- Source:
Properties:
Name Type Default Description QUERYstring r ADDstring a UPDATEstring u DELETEstring d -
<static, constant> TableOperators :string
-
Defines the set of Boolean operators for constructing queries.
Type:
- string
- Source:
Properties:
Name Type Default Description ANDstring and NOTstring not ORstring or