[Rails] Re: Find sub sub records

2009-10-20 Thread Colin Law
2009/10/20 Serafino Picozzi rails-mailing-l...@andreas-s.net: Hi everyone, I have the following problem, maybe someone can help me figure out what to do. To simplify my situation, I'm going to make an example of what I need, this is not the real app structure. Let's suppose we have three

[Rails] Re: Find sub sub records

2009-10-20 Thread srinivasan sakthivel
Hi friend u can try this one..There are three tables :Library,Author,book Class Library ActiveRecord::Base has_many :Authors has_many :Books end Class Author ActiveRecord::Base belongs_to :library has_many :books end Class Book ActiveRecord::Base belongs_to :library belongs_to :author end On