Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

What's the difference between cakephp hasMany and ruby on rails has_many?

For cakephp it's var hasMany = array('Model');

For ruby on rails it's has_many :'Models'

Is it correct ?

share|improve this question

closed as not a real question by Tim Post Apr 22 '12 at 8:51

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

3 Answers

This is correct. Altough I must say, that I have no idea, why you are asking this question..

Also be careful that Ruby uses the plural-name and CakePHP always the singular name.

share|improve this answer

In ActiveRecord you would use has_many :models, not the "has_many :'Models'" that you typed. :models is a symbol which is similar to, but not the same as, a string in Ruby.

share|improve this answer

Rails

A has_many association indicates a one-to-many connection with another model.This association indicates that each instance of the model has zero or more instances of another model.A has_many :through association is often used to set up a many-to-many connection with another model.

cakePHp

hasMany: the other model contains the foreign key.

Remeber cakePHP used Rails concept - I would say don't compare technologies.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.