I have a model named Ad which looks like this:
class Ad
include Mongoid::Document
referenced_in :category
end
and Category model:
class Category
include Mongoid::Document
referenced_in :domain
references_many :ads
end
How can I select Ads by domain?
I have tried to use Ad.where('category.domain_id' => domain.id) but this does not work.