0
내 모델에는 게임과 사용자간에 많은 관계가 있습니다. 주어진 플레이어와 관련된 모든 게임을 어떻게 찾을 수 있습니까? 플레이어 관련 게임 찾기
나는Game.all(Game.users.include?(u))
을 시도하지만 u는, 당신이 원하는 것을 유하는 사용자의 인스턴스가 가정
http://datamapper.org/docs/associations.html
class User
include DataMapper::Resource
property :id, Serial
has n, :games, :through => Resource
end
class Game
include DataMapper::Resource
property :id, Serial
has n, :users, :through => Resource
end