mirror of
https://gitee.com/dromara/easy-es.git
synced 2025-12-06 17:18:57 +08:00
6 lines
192 B
Markdown
6 lines
192 B
Markdown
```java
|
|
groupBy(R... columns)
|
|
groupBy(boolean condition, R... columns)
|
|
```
|
|
● Grouping: GROUP BY field, ...<br />● Example: groupBy(Document::getId,Document::getTitle)--->group by id,title
|