Unexpected result from making single object query
I am not sure what I am doing wrong but there is my code:
current_entry = Entry.objects.get(id=10)
next_entry = Entry.objects.get(current_entry.next)
prev_entry = Entry.objects.get(current_entry.prev)
where current_entry.next and current_entry.prev columns contained the
name of the previous and next entry. No matter what I do, the return
value of the next_entry and prev_entry are always the same value of
current_entry. I run this in interactive shell environment also but I
get the same result. Please help. Thanks.
--
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+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/django-users?hl=en.
0 Comments:
Post a Comment
Subscribe to Post Comments [Atom]
<< Home