0

我是mogo和mongoid的初学者。我可以通过子子文档多个字段($elemMatch)过滤子文档集合吗?我正在尝试为嵌入式集合创建参数化范围。

设置:

class Product
  include Mongoid::Document
  include Mongoid::Timestamps

  field :name, type: String, default: ''

  embeds_many :versions, class_name: self.name, validate: false, cyclic: true
  embeds_many :flags
end

class Flag
  include Mongoid::Document
  include Mongoid::Timestamps

  field :text, type: String
  field :state, type: Boolean
end

通常,现在我想通过标志状态和名称在单个产品中过滤我的版本:

Product.first.versions.where('$elemMatch' => {'flags.text' => 'normalized', 'flags.state' => true})不工作。

要么不工作:

Product.first.versions.elem_match(flags: {text: 'normalized', state: true})
Product.first.versions.where(:flags.elem_match => {text: 'normalized', state: true})
Product.first.versions.where(flags: {'$elemMatch' => {text: 'normalized', state: true}})

有没有办法做到这一点?谢谢。

4

0 回答 0