因此,很难找到快速的答案。我在纯控制台应用程序中使用 ActiveRecord,并且我的课程设置如下:
class Owner < ActiveRecord::Base
has_many :profiles
end
class Profile < ActiveRecord::Base
has_many :lines
belongs_to :owner
end
class Line < ActiveRecord::Base
belongs_to :profiles
end
现在通常我会做类似的事情..
Profile.create( :thing => "thing", :otherthing => "otherthing" )
AR 如何知道将此配置文件实例链接到所有者?那么数据库中已经存在的特定所有者呢?我该怎么说?我将如何一次完成所有链接?(线路,配置文件,所有者)?