好吧,我的问题有点如下:
假设我有下一个模型,这是一个简单的案例:
class Period(models.Model):
name = CharField(... field specs here ...)
start_date = DateTimeField(... field specs here ...)
duration = ... don't know what field should i use but this has to hold a delta ...
我想在 django 查询中检索 (start_date + duration) < now 的对象(我知道我可以在 python 中像 my_date_time + a_time_delta < datetime.now() 一样进行测试,但事实并非如此......我需要它作为查询的一部分)。
我怎么才能得到它?