Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 grails 中,我可以通过执行以下操作来获取具有特定条件的所有 Person:
def possibleUsers = Person.withCriteria { ... }
但我只想统计所有人——我没有标准。
Grails 的方法是什么?
谢谢
我相信
Person.count()
应该这样做