On 1/15/06, ZebZiggle <[EMAIL PROTECTED]> wrote:
> When I want to compare two model objects is it safe to do something
> like this:
>
> user = users.get_list(id__exact = 3)[0]
>
> if user == myuser:
>     # do stuff

Yes, it's safe to do that. Behind the scenes, that compares the
primary keys, so it's equivalent to doing "user.id == myuser.id".

Thanks for bringing this up! I've added a "Comparing objects" section
to the docs:
http://www.djangoproject.com/documentation/db_api/#comparing-objects

Adrian

--
Adrian Holovaty
holovaty.com | djangoproject.com | chicagocrime.org

Reply via email to