tags:

views:

38

answers:

1

Hi,
In my application i need the opposite to the date_of_talk__lte= as this results in where date_of_talk <= and I need this and this so should I just execute one query using model.objects.raw(query)?
Thanks in Advance,
Dean

+2  A: 

Maybe date_of_talk__gte?

gruszczy
Thanks, i couldn't see it in the Django Docs.
Dean
Possibly _gt, as _gte is Greater Than or Equal
Piskvor