Finally I implemented a custom manager.

http://dpaste.com/hold/75010/

But another problem arised, that Django's object_list generic view
only accepts a QuerySet object, not list neither other iterables.
Of course I can implement my own pagination with the given Paginator
class, but this seems not so much clean...

On 8월4일, 오후4시28분, Daybreaker <daybreake...@gmail.com> wrote:
> I want to run a query like this:
>
> select * from bbs_article a, bbs_article_tags a2, bbs_tag t where t.id
> = a2.tag_id and a.id = a2.article_id order by (case when t.name =
> 'notice' then '' else t.name end)
>
> which has a custom ordering rule.
>
> As far as I know, Django model currently does not support such custom
> orderings, but only field-based native orderings.
>
> How do I use the above sql in most clear way (like using typical model
> query with manually changed order clause), or is there any workaround
> to do the same jobs?
--~--~---------~--~----~------------~-------~--~----~
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