- In a Grails domain class, declare fields to define mappings. For example, in the domain class Book.groovy there are four fields:
Date acquired String title String author1 String author2 - In a Grails view, controller, or test class, create a method. For example, in the BookTests.groovy, create method testSomething().
- In the method body, reference a domain class to be queried, and start typing the query. Press Ctrl+SpaceControl Space:

- Press Ctrl+SpaceControl Space once more, and select the desired condition from
the suggestion list:

Repeat code completion to concatenate as many search conditions as required.
Tip
The same procedure applies to the count function:


