我有两个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
如何在特定日期高效获取特定国家/地区中的事件?