findWhere

Purpose

Uses named arguments that match the property names of the domain class to produce a query that returns the first result.

Examples

Given the domain class:

class Book {
   String title
   Date releaseDate
   String author
}

You can query in the form:

def book = Book.findWhere(author:"Stephen King", title:"The Stand")

Description

Parameters: