1.

What Is Dynamic Finders?

Answer»

Are the methods auto GENERATED by grails based on fields of the domain class.

Example. class Book {

String title
Date releaseDate
AUTHOR author
}

def book = Book.findByTitle("The STAND")
book = Book.findByTitleLike("Harry Pot%")

Are the methods auto generated by grails based on fields of the domain class.

Example. class Book {

String title
Date releaseDate
Author author
}

def book = Book.findByTitle("The Stand")
book = Book.findByTitleLike("Harry Pot%")



Discussion

No Comment Found