Uploaded image for project: 'Mongoid'
  1. Mongoid
  2. MONGOID-1823

has_one association uses $in

    • Type: Icon: Task Task
    • Resolution: Done
    • 2.4.7
    • Affects Version/s: None
    • Component/s: None
    • None
    • None
    • None
    • None
    • None
    • None
    • None
    • None

      class Human
      has_one :brain
      end

      class Brain
      belongs_to :human
      end

      human.brain #=> app['brains'].find({"user_id"=>{"$in"=>[BSON::ObjectId('4e1ff77971e2f4000100001e')]}})

      This seems a little inefficient (especially with indexes). I'd have presumed it would have generated a query like:

      app['brains'].find(

      {"user_id"=>BSON::ObjectId('4e1ff77971e2f4000100001e')}

      )

            Assignee:
            Unassigned Unassigned
            Reporter:
            chrislloyd Chris Lloyd
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              None
              None
              None
              None