I want to query on a Hash field for a Mongoid Class. I'm not sure how I can do this with conditions?

Here is an example:

class Person
  include Mongoid::Document

  field :things, :type => Hash
end

So, let's say that I have this:

p = Person.new
p.things = {}
p.things[:tv] = "Samsung"

I want to query for the first person with a tv that is a Samsung...

People.first(:conditions => ?????

Thanks in advance.

link|improve this question

feedback

1 Answer

up vote 14 down vote accepted
Person.where('things.tv' => 'Samsung').first

This is where Mongoid and MongoDB really shine. Mongoid's Criteria methods (Person.where, Person.any_of, Person.excludes, etc.) will give you much more flexibility than the ActiveRecord-style finders (passing a :conditions hash to Person.find, Person.first, etc.)

Mongoid's site has some great documentation on how to use Criteria:

http://mongoid.org/docs/querying.html

link|improve this answer
When I try that I get the following error: "BSON::InvalidKeyName: key must not contain '.'" – JP Richardson Nov 22 '10 at 21:47
Nevermind. That error was when I was trying to use that syntax on my ".create" method. Thanks, it worked great. – JP Richardson Nov 22 '10 at 21:57
Well, now the problem is that when People is persisted using "save" and then later retrieved using the "where" method, you can no longer access p.things[:tv].. it has to be p.things['tv']. Mongoid converts it to string. Any thoughts on why that would be? – JP Richardson Nov 22 '10 at 22:44
The keys of a hash have to be strings according to the BSON spec. It's technically not valid to use p.things[:tv] to set the value, but Mongoid is converting to string for you. This is an issue with MongoDB itself: mongodb.org/display/DOCS/… You can store symbols as values, though. For the keys, you'll just have to use p.things['tv'] . – bowsersenior Nov 22 '10 at 23:35
No, actually @bowsersenior , you make this point much more clear than the MongoID docs page. I read it several times and didn't grok this. – NewAlexandria Oct 28 '11 at 19:07
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

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