> `except` is used when you want to use part of a relation but not > necessarily the whole thing. It's not always useful in application code, > but when dealing with generic relations it can be really useful: > > https://github.com/rails/rails/blob/44b7d6c41610bb8ddd058b3815543985f65bf7ad > /activerecord/lib/active_record/relation/finder_methods.rb#L296 > > Here, `except` is used to remove parts of the relation that `exists?` > doesn't want to use. > > --Matt Jones
Very useful example. Does it mean, we can use it also *scope* or on *default scope* ? Will it be a good choice although to use scope relation if it fits any query, with some tailoring using *except* ? -- ================ Regards, Arup Rakshit ================ Debugging is twice as hard as writing the code in the first place. Therefore, if you write the code as cleverly as possible, you are, by definition, not smart enough to debug it. --Brian Kernighan -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/4437287.IP04tW28jT%40linux-wzza.site. For more options, visit https://groups.google.com/d/optout.

