On Feb 1, 9:28 am, Kenneth Gonsalves <law...@au-kbc.org> wrote:
> hi,
>
> I have a model Player which has a function called getcoursehandicap() defined
> in the model. I need to get all the Players in a Match with course handicap in
> a certain range. The query should look like this:
>
> players = Matchentry.objects.filter(player__getcoursehandicap()__in= [0..16])
>
> of course this doesnt work - any clue how to do this? or do I fall back on raw
> sql?

This is impossible to answer without knowing what getcoursehandicap
does, and the structure of your models. Where is it getting the
handicap for a player from?

In any case, you wouldn't use __in, but __range=(0, 16), for the
lookup.
--
DR.

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@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