0
我有一個組模型。我想查詢一個組來查看是否存在用戶。通常情況下,使用嵌入式文檔更容易,但不幸的是,在這種情況下,我不能這麼做。在嵌入式場景中,我會執行以下操作。如何在參考場景中執行此查詢。包含引用文檔ID的Mongoid查詢文檔
注意:**我不想使用habtm的關係。
查詢
Matter.where(:'matter_counsels._id' => the_id)
類
class Matter
include Mongoid::Document
# Relationships
has_many :matter_counsels # subclass of MatterRelationship
has_many :matter_clients # subclass of MatterRelationship
has_many :matter_opposing_parties # subclass of MatterRelationship
has_many :matter_related_parties # subclass of MatterRelationship
end
class MatterRelationship
include Mongoid::Document
belongs_to :matter
end