Mongoid Запрос количества отношений - PullRequest
0 голосов
/ 09 марта 2012

У меня две модели.Я пытаюсь запросить модель, сколько у нее связей с другой моделью.Мои модели следующие:

# app/models/client.rb
class Client
  include Mongoid::Document
  belongs_to :contact
  ...
end

# app/models/contact.rb
class Contact
  include Mongoid::Document
  has_many :clients
  ...
end

Мне нужно иметь возможность запросить следующее:

Контакты с НЕТ клиентами

Contact.where("clients.length == 0")

Контакты с клиентами

Contact.where("clients.length > 0")

Может ли кто-нибудь помочь мне с тем, как я поступил бы с этим?

1 Ответ

2 голосов
/ 10 марта 2012

Учитывая следующую модель:

class Client
  include Mongoid::Document
  belongs_to :contact
  field :name, type: String
end
class Contact
  include Mongoid::Document
  has_many :clients
  field :name, type: String
end

И следующие вставки:

Contact.create(:name => "Bill")
jill = Contact.create(:name => "Jill")
jill.clients.create(:name => "Steve")

Следующий код сделает то, что вам нужно:

p "Has Clients"
Contact.any_in(_id: Client.all.distinct("contact_id")).each do |c| 
  p c 
end
p "No Clients"
Contact.not_in(_id: Client.all.distinct("contact_id")).each do |c| 
  p c 
end

Выходы:

"Has Clients"
#<Contact _id: 4f5b04b1e98c373917000002, _type: nil, name: "Jill">
"No Clients"
#<Contact _id: 4f5b04b1e98c373917000001, _type: nil, name: "Bill">

Полный смысл: https://gist.github.com/2010817

...