作者热门文章
- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
如果我想搜索一个 属性大于 100 的 mongoid 模型,我会这样做。
Model.where({'price' => {'$gt' => 100}})
如何搜索没有属性大于 100 的 mongoid 模型?
试过这个但失败了。
Model.not_in({'price' => [{'$gt' => 100}]})
附加信息:
归根结底,我想像这样进行查询:
criteria = {
'price' => [{'$gt' => 100}],
'size' => 'large',
'brand' => 'xyz'
}
Model.not_in(criteria)
因为标准是动态创建的。
最佳答案
属性不大于 100 的模型 = 属性小于或等于 100 的模型?
Model.where({'price' => {'$lte' => 100}})
关于ruby - 如何查询mongoid 'not_in' 'greater than',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21011469/
如果我想搜索一个 属性大于 100 的 mongoid 模型,我会这样做。 Model.where({'price' => {'$gt' => 100}}) 如何搜索没有属性大于 100 的 mong
我有以下数组 $exclude = array(1 => array(1,2,3,4), 2 => array(1,2,3,4)); 当键验证时,我需要排除内部数组中的值。我不确定我是应该使用 CAS
我是一名优秀的程序员,十分优秀!