此問題與其他:Many-to-many relationships with Ruby, Redis, and OhmRuby 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!
我想是能夠通過其參加活動的用戶要問,什麼是由用戶的活動。
你好弗蘭,明天我會回覆,對不起,延遲! – soveran 2015-01-04 22:47:26