Hey,

Django documentation says:

"If you override the get_query_set() method and filter out any rows,
Django will return incorrect results. Don't do that. A manager that
filters results in get_query_set() is not appropriate for use as an
automatic manager."

http://docs.djangoproject.com/en/1.0//topics/db/managers/#do-not-filter-away-any-results-in-this-type-of-manager-subclass

Now lets presume that in our application we do not actually delete
rows, but instead we set delete_time to current time. In this case I
believe it's quite reasonable to filter query set (exclude rows with
delete_time not null) even in automatic manager. Am I right?

regards.

--~--~---------~--~----~------------~-------~--~----~
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