开发者

Two Tables Serving as one Model in Rails

开发者 https://www.devze.com 2023-01-04 02:05 出处:网络
Is is possible in rails to setup on model which is depend开发者_运维技巧ant on a join from two tables? This would mean that for the the model record to be found/updated/destroyed there would need to b

Is is possible in rails to setup on model which is depend开发者_运维技巧ant on a join from two tables? This would mean that for the the model record to be found/updated/destroyed there would need to be both records in both database tables linked together in a join. The model would just be all the columns of both tables wrapped together which may then be used for the forms and so on. This way when the model gets created/updated it is just one form variable hash that gets applied to the model?

Is this possible in Rails 2 or 3?


It isn't possible to do exactly what you're asking for in Rails as far as I know, but you can effectively accomplish what you're trying to accomplish with a second model, using callbacks and a has_one association, for instance:

class Widget < ActiveRecord::Base
  has_one :thingy
  before_save :save_thingy_object

  def save_thingy_object
    self.thingy = Thingy.new({ :attr1 => 'some', :attr2 => 'thing' })
  end
end

class Thingy < ActiveRecord::Base
  belongs_to :widget
end


Multi-table inheritance has no out-of-the-box solution in Ruby on Rails right at the moment. Although i would suggest trying to do something similar as the aforementioned models with relations, and then basically abusing delegates or manual proxies to fake the relation attributes to appear as real attributes of the model.


In MySQL you could try to work with views to join the two tables. But I am not sure what happens if records needs to be updated and how Rails would manage that.

http://dev.mysql.com/doc/refman/5.1/en/create-view.html

0

精彩评论

暂无评论...
验证码 换一张
取 消