Tagged Questions

1
vote
2answers
1k views

limitations of :finder_sql

In a rails app, I using the :finder_sql option in a has_many declaration. The rails docs say that when I do this, "find_in_collection is not added." What does this mean?
0
votes
1answer
39 views

symfony 1.4/ doctrine 1.2 active record relationship tables code organize

Let´s say I have a schema containing 3 tables: Users,Pages and Followers. An user can follow many pages. The followers table would contain the page_id and user_id. I need to create a method to return ...
0
votes
1answer
194 views

Can Rails Active Record understand two simultaneous relationships between two tables at once?

I have two tables, users and groups. A user can belong to many groups. A group can have many users. So I have created a have_and_belongs_to_many relationship between users and groups using a join ...