vote up 0 vote down star

Is there a shorter/cleaner way than DomainClass.findAll()[0] to retrieve the first domain object in the set of domain objects that would normally be retrieved by findAll()?

Ideally, I'd like DomainClass.find() but such a finder does not exist.

flag

2 Answers

vote up 1 vote down check

Couldn't you use find without a where clause: http://grails.org/doc/1.1.1/ref/Domain%20Classes/find.html

e.g. DomainClass.find('from DomainClass')

link|flag
1  
You could expand this pretty easily in a plugin/bootstrap by adding a zero arg find() to each domain classes metaclass that simply calls your method – Ted Naleid Sep 18 at 4:51
vote up 1 vote down

How about using list:

DomainClass.list(max:1)
link|flag
seth: Since .list() returns a List wouldn't that just result in the code DomainClass.list(max:1)[0]? What I would like is something a long the line "DomainClass foo = DomainClass.find()". – knorv Sep 17 at 18:28
Mea culpa. Thought you were trying to avoid returning all your domain objects. – seth Sep 17 at 19:36

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.