I have a domain class called Event:
class Event{
String eventID // an ID for the event, (there are multiple events with same eventID)
.....
}
In my eventService class I want to get all events with distinct eventIDs, so I have the following query:
Event.executeQuery("select distinct e.eventID from Event e", [max: max, offset: offset])
According to the grails docs it should work. However, I'm getting this error:
| Error 2012-05-10 18:14:09,643 [http-bio-8080-exec-9] ERROR errors.GrailsExceptionResolver - MissingPropertyException occurred when processing request: [POST] /events/event/list -
No such property: id for class: java.lang.String. Stacktrace follows:
Message: No such property: id for class: java.lang.String
Line | Method
->> 35 | run in C__src_Event_events_grails_app_views_event__List_gsp
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 18 | render . . . . . . in org.events.EventController
| 67 | list . . . . . . . in ''
| 1110 | runWorker in java.util.concurrent.ThreadPoolExecutor
| 603 | run . . . . . . . . in java.util.concurrent.ThreadPoolExecutor$Worker
^ 722 | run in java.lang.Thread
I am fairly new to grails and any help would be greatly appreciated. Btw I'm using Grails 2.0.1.