On 3/13/07, devdiscuss <[EMAIL PROTECTED]> wrote:
> Hi, does the ORM in Django support nested objects?  For instance,
> assuming I have a User model which should have multiple mailing
> addresses, can I encapsulate the address information (street, city,
> state, etc.) into an object vs. individual fields like
> address1_street, address1_city?  In looking through the documentation,
> nothing jumped out at me.  Apologies if I have overlooked something
> obvious here.

If you want it to be encapsulated in a class, define the class
separately and relate it back to the class it pertains to, say, with a
unique foreign key.

If you just want to control getting/setting, use a property:

http://www.djangoproject.com/documentation/models/properties/

-- 
"Bureaucrat Conrad, you are technically correct -- the best kind of correct."

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to