Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In this link Rails find_or_create by more than one attribute? can use more that one attribute with active record.

How can I use more than attribute in mongoid?

Thank you

share|improve this question

2 Answers

up vote 2 down vote accepted

If you look at the source in lib/mongoid/finders.rb:

# Find the first +Document+ given the conditions, or creates a
# with the conditions that were supplied.
    ...
# @param [ Hash ] attrs The attributes to check.
#
# @return [ Document ] A matching or newly created document.
def find_or_create_by(attrs = {}, &block)
    find_or(:create, attrs, &block)
end

you can see that find_or_create_by accepts a {} as the first argument. You can just pass in several conditions at once

something.find_or_create_by(name: 'john', age: 20)

and it should work.

share|improve this answer
Thank you very much! – hyperrjas Aug 16 '12 at 13:19

From the mongoid docs on querying:

Model.find_or_create_by

Find a document by the provided attributes, and if not found create and return a newly persisted one.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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