I have a Person object which has_many companies. I would like to get the person with atleast one company. What I can get right now is

Person.where(:company_ids.size => 1)

This will return all the person with one company . But I need something like

Person.where(:company_ids.size.gte => 1)

But it seems , this does not work.

Solution :

sorry for all the trouble, but found out that with previously created objects , I didn't have company_ids ... since I had only added that later. I can get the count with following :

Person.where(:company_ids.exists => true).and("this.company_ids.length > 0") 

Thanks everyone for helping out.

link|improve this question

78% accept rate
is company_ids a array field in person document? – RameshVel Nov 18 '11 at 6:11
yes company_ids is a array field . The solution provided below doesn't seem to work . – Prabesh Shrestha Nov 18 '11 at 18:38
feedback

3 Answers

up vote 4 down vote accepted

Did you check doing as

Person.where("this.company_ids >=1")

link|improve this answer
this wont work, OP wants to get persons having at least one company. so you need to check the size – RameshVel Nov 18 '11 at 9:11
feedback

I assume company_ids a array field in person document

I am afraid there is no way of specifying conditions in size. But there is a workaround using javascript $where expression

 db.person.find({$where: '(this.company_ids.length > 0)'})

am not sure about how to pass this expression in mongoid.

EDIT

yeah you can do this with mongoid too

Person.where("$where" =>  'this.company_ids.length >0;' )
link|improve this answer
feedback

You should be able to do:

Person.where("this.company_ids.length > 3")

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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