>
> So in state_php I can write
>
> var $hasMany = array('Address' =>
> array('className' => 'Address',
> 'conditions' => '',
> 'order' => '',
> 'dependent' => true,
> 'foreignKey' => 'state_id'
> )
> );
>
> But this just doesn't seem right. Why should State know anything about
> Address?
Because you've just defined it. It doesn't have to be that way: you
can define only the Address belongsTo State relationship if you choose.
> A lookup table just isn't the same as an actual object where I
> store and update data. It just an enum that's pulled out for
> maintainability and clarity. Plus, State may be used in multiple
> locations and it doesn't make sense to update the State model
> because I
> want to use it somewhere else.
Not sure what you're after here - are you asking a question? Maybe
I'm just not understanding.
-- J
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Cake
PHP" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cake-php
-~----------~----~----~----~------~----~------~--~---