findAllWhere
目的 Purpose
Uses named arguments corresponding to property names of the domain class to execute a query returning all matching results.使用例 Examples
Given the domain class:class Book { String title Date releaseDate String author static constraints = { releaseDate nullable: true } }
def books = Book.findAllWhere(author: "Stephen King", title: "The Stand")def unreleasedBooks = Book.findAllWhere(releaseDate: null)
詳細 Description
パラメータ: Parameters:
queryParams
- A Map of key/value pairs to be used in the query