MongoDB 查询之间 Loopback 3 的数学表达式
Mathematical expression for Loopback 3 between query on MongoDB
我正在使用 loopback 3
和 MongoDB
。
Loopback 3 有 between 运算符,我按如下方式使用它。
whereQuery.progress = { between: [25, 50] };
以上哪个是正确的数学表达式,为什么?
- 25 < 进度 < 50
- 25≤进度<50
- 25≤进度≤50
- 25≤进度≤50
引用链接文档:
True if the value is between the two specified values: greater than or equal to first value and less than or equal to second value.
我正在使用 loopback 3
和 MongoDB
。
Loopback 3 有 between 运算符,我按如下方式使用它。
whereQuery.progress = { between: [25, 50] };
以上哪个是正确的数学表达式,为什么?
- 25 < 进度 < 50
- 25≤进度<50
- 25≤进度≤50
- 25≤进度≤50
引用链接文档:
True if the value is between the two specified values: greater than or equal to first value and less than or equal to second value.