瀏覽代碼

Fixed #34440 -- Doc'd that & queryset operator works similar to chaining.

David Sanders 2 年之前
父節點
當前提交
0494efddc4
共有 1 個文件被更改,包括 3 次插入5 次删除
  1. 3 5
      docs/ref/models/querysets.txt

+ 3 - 5
docs/ref/models/querysets.txt

@@ -1983,15 +1983,13 @@ Combined querysets must use the same model.
 AND (``&``)
 ~~~~~~~~~~~
 
-Combines two ``QuerySet``\s using the SQL ``AND`` operator.
+Combines two ``QuerySet``\s using the SQL ``AND`` operator in a manner similar
+to chaining filters.
 
 The following are equivalent::
 
     Model.objects.filter(x=1) & Model.objects.filter(y=2)
-    Model.objects.filter(x=1, y=2)
-    from django.db.models import Q
-
-    Model.objects.filter(Q(x=1) & Q(y=2))
+    Model.objects.filter(x=1).filter(y=2)
 
 SQL equivalent: