I'm constructing and executing the following query:
var queryDate = new Date(2013, 6, 22);
var query = azure.TableQuery
.select()
.from("WADLogsTable")
.where("Timestamp > ?", queryDate);
tableService.queryEntities(query, function(err, entities){
......
});
However entities is returning as empty, if I remove the where clause then the entities collection is populated?
Any thoughts on what is wrong with this query?
If I dump out the query object to the console it looks like - { _fields: [], _from: 'WADLogsTable', _where: [ 'Timestamp gt datetime\'2013-07-21T23:00:00.000Z\'' ], _top: null, _partitionKey: null, _nextPartitionKey: null, _rowKey: null, _nextRowKey: null }