将BooleanExpression集成到SQL查询中

时间:2016-08-29 09:11:52

标签: sql entitymanager boolean-expression mysema

这是我的情况:

class LocationPoint(models.Model):
    title = models.CharField(max_length=30, null=False, blank=False)
    radius = models.DecimalField(max_digits=5, decimal_places=2, null=False, blank=False)
    point = models.PointField(srid=4326, null=False, blank=False)
    objects = models.GeoManager()

我想做的是采用我的BooleanExpression并将其计算到“where”......任何建议?

0 个答案:

没有答案