Mongoid地图/减少或找到关系

时间:2014-07-10 16:24:50

标签: ruby-on-rails mongodb mongoid

我有两个mongoid集合:

地点和活动

```

class Location
  include Mongoid::Document
  field :name, type: String
  field :country, type: String
  has_many :events
end

class Event
  include Mongoid::Document
  field :name, type: String
  field :date_begin, type: Date
  belongs_to :location
end

如何在特定日期高效获取特定国家/地区中的事件?

0 个答案:

没有答案