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 ?
|
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 ? |
|||
|
|
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.
|
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. |
|||
|
|
|
In ActiveRecord you would use |
|||
|
|
RailsA 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. cakePHphasMany: the other model contains the foreign key. Remeber cakePHP used Rails concept - I would say don't compare technologies. |
|||
|
|