So lets say I have an array containing a hash like this:

[{"head"=> {"title"=>"$20,000 Prize-Winning Chili", 
            "categories"=>[{"cat" => "Tex-mex"}]

Its much bigger than this (its a full recipe) - but this should be enough to demonstrate my question.

in my model Recipe.rb I have:

  def title
    self["head"]["title"] rescue nil
  end

which will give me recipe.title in my views...however, in my controller, I want to be able to do things like:

 @recipes = Recipe.where(title: "xyz")

But title isn't a field in the collection - so it returns nothing to me... any ideas here? I'm super new to mongo - as in I started with it yesterday.

Thanks!

link|improve this question

77% accept rate
feedback

1 Answer

up vote 1 down vote accepted

Use this:

@recipes = Recipe.where('head.title' => "xyz")
link|improve this answer
syntax error, unexpected ':', expecting ')' @recipes = Recipe.where('head.title': "xyz") – Elliot Dec 29 '11 at 18:21
changing to => worked – Elliot Dec 29 '11 at 18:22
Ah, yes. New syntax is good for symbols only :-) Updated the answer. – Sergio Tulentsev Dec 29 '11 at 18:26
you should accept helpful answers, by the way :-) – Sergio Tulentsev Dec 29 '11 at 18:29
cant accept within the first 15 minutes or something silly – Elliot Dec 29 '11 at 18:37
feedback

Your Answer

 
or
required, but never shown

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