Tuesday, December 4, 2018

Re: How 2 access the Primary model's ID in the Foreign model??

On 5/12/2018 7:07 AM, Sourajit Mohanty wrote:
> I have 2 model classes Album and Songs(where Song is the Foreign key)
> I want to access the Albums ID in the Songs class..
> How can I do that??
>


song = Songs.objects.get(name='Happy birthday')
albumid = song.album.id

Similarly ...

album = song.album

This assumes your model code in Songs names the foreign key 'album'

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/d7e6a11e-e55d-3393-6937-31dee72d4035%40dewhirst.com.au.
For more options, visit https://groups.google.com/d/optout.

No comments:

Post a Comment