Microsoft Azure移动服务中的查询对象

时间:2016-09-16 09:49:44

标签: sql azure object mobile

如果我想要指定用户的用户列表,那么我可以使用它。

  tblTest.where({ userId: user.userId})
        .read({ success: function(results) { 
           console.log("results",results
     }});

但我想要做的是,我想获取所有创建日期大于今天日期的用户数据。 var todayDate = new Date(); 我如何使用查询对象在这里使用相似的代码。

select * from tblTest where startDate <= todayDate 

tblTest.where({ startDate <= user.userId})

//这不起作用

1 个答案:

答案 0 :(得分:0)

tblTest.where(function(){
   return startDate <= todayDate;
})
.read({ success: function(results) { 
    console.log("results",results
}});
终于找到了它。 :)