On Thursday 29 Oct 2009 3:09:51 pm lijihuai wrote:
> class Novel(models.Model):
>         name = CharField()
> 
>     class Author(models.Model):
>         name = CharField()
>         novels = models.ManyToManyField(Novel, db_table='author_novels')
> 
> how could i map the columns novel_id and author_id from the table
>  author_novels ?        
> 
 actually table author_novels is created by django and not visible to you. You 
have the _set.all() thingie to access either side of the relation. Please 
refer to:
http://docs.djangoproject.com/en/dev/topics/db/queries/#many-to-many-
relationships
-- 
regards
Kenneth Gonsalves
Senior Project Officer
NRC-FOSS
http://nrcfosshelpline.in/web/

--~--~---------~--~----~------------~-------~--~----~
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 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to