在我的新Rails项目中,我需要访问我的旧数据库。所以我创建了一些传统模型。 我在照片和评论之间有多态关联(commentable_id和commentable_type)
当我打电话
旧:: Photo.last.comments
它不起作用,因为commentable_type是'Photo'而不是'LegcayPhoto'。
SELECT "comments".* FROM "comments" WHERE "comments"."commentable_id" = $1 AND "comments"."commentable_type" = $2 [["commentable_id", 123], ["commentable_type", "Legacy::Photo"]]
遗留/ photo.rb
module Legacy
class Photo < ActiveRecord::Base
establish_connection "legacy_#{Rails.env}"
belongs_to :user, :class_name => 'Legacy::User' #works fine
has_many :comments, :class_name => 'Legacy::Comment', :as => :commentable
end
end
遗留/ comment.rb
module Legacy
class Comment < ActiveRecord::Base
establish_connection "legacy_#{Rails.env}"
#?? belongs_to :commentable, :polymorphic => true
end
end
我在legacy / comments.rb中也遇到了问题。 有没有办法为belongs_to添加名称空间:commentable,:polymorphic =&gt;是吗?
答案 0 :(得分:-1)
也许不是最理想的方法,但您现在可以轻松定义一个返回ActiveRecord查询的方法,而不是构建has_many
关联,而该方法会模仿has_many
返回的内容:
module Legacy
class Photo < ActiveRecord::Base
establish_connection "legacy_#{Rails.env}"
belongs_to :user, :class_name => 'Legacy::User' #works fine
def comments
Comment.where("commentable_type='LegacyPhoto' AND commentable_id=?", self.id)
end
end
end
现在,你仍然可以说:
Legacy::Photo.comments.where(created_at > 1.day.ago)
它仍然可以使用。