I have a method that looks like this:
static UserEvent get(long userId, long eventId) {
UserEvent.find 'from UserEvent where user.id=:userId and event.id=:eventId',
[userId: userId, eventId: eventId]
}
I'm calling it two times with some test data:
println UserEvent.get(1, 1) //I know this has value
println UserEvent.get(1,2) //I know this does not
The above two statements result in:
scheduler.UserEvent : null
null
Question
What is the difference? How can I write an If condition for when something is present or not..
Update
I'm creating the object like this:
def event = Events.findById(params.eventid)
def user = User.findById(params.userid)
UserEvent.create(user, event, true)
toStringmethod inUserEvent? – tim_yates Feb 26 at 14:29UserEventobject (as expected) in the first instance, but when it prints it out, it's printing some property of it which is set to null – tim_yates Feb 26 at 14:36IDfor some reason then. How are you creating them? – tim_yates Feb 26 at 14:40