私のモデルでは、ゲームとユーザーの間に多対多の関係があります。特定のプレーヤーが関与するすべてのゲームを見つけるにはどうすればよいですか?
試してみましたが、約Game.all(Game.users.include?(u))
を得ましたNoMethodError
include?
これが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