내가 할당 된 특정 직원이있는 모든 단계를 찾기 위해 노력하고있어이협회 (Datamapper)
class Stage
include DataMapper::Resource
property :id, Serial
belongs_to :staff
end
class Staff
include DataMapper::Resource
property :id, String, :key => true
property :full_name, String
property :email, String
has n, :stages
end
과 같이 두 가지 모델을 가지고에 의해 찾을 수 있습니다. 나는 시도했다 @stages = Stage.all(Stage.Staff => 'TM')
내가 뭘 잘못하고 있니?
감사합니다. – Tom