我有2个主要实体,UserProfile和Property。基本上,UserProfile需要维护3个不同的属性列表(注意,每个列表类型都有其他属性)
有没有人认为以下设计有任何问题:
class UserProfile < ActiveRecord::Base
has_many :shortlists
has_many :booklists
has_many :proplists
end
class Shortlist < ActiveRecord::Base
has_and_belongs_to_many :properties
end
class Booklist < ActiveRecord::Base
has_and_belongs_to_many :properties
end
class Proplist < ActiveRecord::Base
has_and_belongs_to_many :properties
end
class Property < ActiveRecord::Base
has_and_belongs_to_many :shortlists
has_and_belongs_to_many :booklists
has_and_belongs_to_many :proplists
end
我考虑的另一种方法是对Property实体使用多态性, 但不确定哪种方式会更多'轨道方式'
答案 0 :(得分:1)
HABTM略有过时,已被替换为has_many:through。另外,请查看Railscast on Polymorphic Associations。 Ryan Bates在解释这一点方面做得非常出色。
答案 1 :(得分:0)
当然,多态性似乎是正确的想法。它正盯着你的脸。但如果你走得太远,我想警告你远离has_many_polymorphs
宝石。过时,错误,Rails 3 version isn't close to mature,它会使您的开发环境非常沉重(每个请求需要额外的4-6秒才能加载)。
多读一下多态,比如:
http://quickleft.com/blog/advanced-activerecord-recipes-doubly-polymorphic-join-models