mirror of
https://gitee.com/dromara/easy-es.git
synced 2025-12-06 09:09:13 +08:00
376 B
376 B
in(R column, Collection<?> value)
in(boolean condition, R column, Collection<?> value)
● Field in (value.get(0), value.get(1), ...)
● Example: in("age",{1,2,3})--->age in (1,2,3)
in(R column, Object... values)
in(boolean condition, R column, Object... values)
● Field in (v0, v1, ...)
● Example: in("age", 1, 2, 3)--->age in (1,2,3)