这个问题与其他问题有关:Many-to-many Relations with Ruby, Redis, and Ohm
我有一个带有集合的模型,我想寻找一个 id。我怎样才能做到这一点?
楷模
class User < Ohm::Model
attribute :name
end
class Event < Ohm::Model
attribute :title
collection :attendees, :User
end
用法
@fran = User.create(name: "Fran")
@event = Event.create(title: "Party in Las Vegas")
@event.attendees.add(@fran)
Event.find(attendees: @fran)
=> Ohm::IndexNotFound exception!
我想要的是能够由用户询问参加了哪些活动以及用户的活动是什么。