Django:是否有查询模型对象的in_查找,就像SQLAlchemy查询一样?

时间:2009-11-20 16:21:08

标签: django-models sqlalchemy

我正在努力完成这样的事情:

  userSelectionIDs = [pref.selectionID for pref in UserColumnSelectionPreference.objects.filter(user=reqUser).all()]
  selections = ColumnSelections.objects.filter(id.in_(userSelectionIDs)).filter(type=2).all()

或者,有没有更好的方法来获取这组对象?

1 个答案:

答案 0 :(得分:1)

不确定

selections = ColumnSelections.objects.filter(id__in(userSelectionIDs)).filter(type=2).all()

请参阅QuerySet API