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()
やるべき