You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 5, 2023. It is now read-only.
A new entity can be added by calling insertEntity:
vartableService=azure.createTableService(),task1={PartitionKey : 'tasksSeattle',RowKey: '1',Description: 'Take out the trash',DueDate: newDate(2011,12,14,12)};tableService.insertEntity('tasktable',task1,function(error){if(!error){// Entity inserted}});
The method queryEntity can then be used to fetch the entity that was just inserted:
vartableService=azure.createTableService();tableService.queryEntity('tasktable','tasksSeattle','1',function(error,serverEntity){if(!error){// Entity available in serverEntity variable}});