Tagged Questions

2
votes
3answers
1k views

Rails ActiveRecord relationships - has many and belongs to associations

I've created 3 models: Article: contains an article Tag: contains tags ArticleTag: meant for associating a many-to-one tags to article relationship. It contains a tag_id and an article_id. The ...
0
votes
2answers
75 views

CakePHP model associations via an intermediary table?

I have a Home model that links to a Realtor model on Home.realtor_num = Realtor.num. I have an Office model linked to the Realtor model on Realtor.office_num = Office.num. Suppose I want easy access ...