I know that this will be an easy one but I'm having real issues working it out.
I have users that can have_many results. I'm trying to work out how to return users that don't yet have any results to the @starters object(from the controller).
@users = @event.entires
@starters = @users.where("results = ?", 0)
could anyone explain how i would check if a user has no results?