(快速参考)

findAllWhere

目的

使用与领域类属性名称相对应的命名参数,执行查询返回所有匹配结果。

示例

给定领域类

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)

说明

参数

  • queryParams - 用于查询中的键/值对的 Map