Results of 1 - 10 of about 155 for queryset (0.057 sec.)
- QuerySet API リファレンス — Django 4.0.6 ドキュメント 10853
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
ontents | Index | Modules « previous | up | next » QuerySet API リファレンス ¶ このドキュメントでは、 QuerySet ...
で提供された example blog models を使用します。 When QuerySet s are evaluated ¶ 内部的に、 QuerySet は実際にデー ...
のアクセスは発生しません。 あなたは次のような方法で QuerySet を評価することができます: イテレーション。 QuerySe ...
い。 exists() を使う方がより効率的です。 スライス。 QuerySet の要素数を制限する で説明されているとおり、 QueryS ...
-
https://man.plustar.jp/django/ref/models/querysets.html
- [similar]
- 多対多 (many-to-many) 関係 — Django 4.0.6 ドキュメント 10007
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
blication objects: >>> a1 . publications . all () <QuerySet [<Publication: The Python Journal>]> >>> a2 . publ ...
ications . all () <QuerySet [<Publication: Highlights for Children>, <Publicat ...
ed Article objects: >>> p2 . article_set . all () <QuerySet [<Article: NASA uses Python>]> >>> p1 . article_se ...
t . all () <QuerySet [<Article: Django lets you build web apps easily>, ...
-
https://man.plustar.jp/django/topics/db/examples/many_to_many.html
- [similar]
- マネージャ — Django 4.0.6 ドキュメント 9903
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
ドを追加したい場合、もう1つは、 Manager が最初に返す QuerySet を修正したい場合です。 マネージャに新しいメソッドを ...
u'd use OpinionPoll.objects.with_counts() to get a QuerySet of OpinionPoll objects with the extra num_response ...
ソッドは、どんなオブジェクトを返しても構いませんが、 QuerySet だけは返してはいけません。 Another thing to note i ...
to which they're attached. マネージャが初めに返す QuerySet を修正する ¶ A Manager 's base QuerySet returns al ...
-
https://man.plustar.jp/django/topics/db/managers.html
- [similar]
- クエリを作成する — Django 4.0.6 ドキュメント 9579
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
ジェクトを取得するには、モデルクラスの Manager から QuerySet を作ります。 QuerySet はデータベース上のオブジェク ...
てクエリの検索結果を絞り込みます。SQL 文においては、 QuerySet は SELECT 句、フィルターは WHERE や LIMIT のような ...
句に対応しています。 モデルの Manager を用いることで QuerySet を取得します。各モデルは少なくとも一つの Manager を ...
で責任を明確に分離するためです。 Manager はモデルの QuerySet の主な取得元になります。たとえば、 Blog.objects.al ...
-
https://man.plustar.jp/django/topics/db/queries.html
- [similar]
- クラスベース汎用ビュー - フラットインデックス — Django 4.0.6 ドキュメント 9220
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
_method_names model pk_url_kwarg query_pk_and_slug queryset [ get_queryset() ] response_class [ render_to_resp ...
orphans [ get_paginate_orphans() ] paginator_class queryset [ get_queryset() ] response_class [ render_to_resp ...
inator() head() http_method_not_allowed() paginate_queryset() render_to_response() setup() 編集するためのビュー ...
rl_kwarg prefix [ get_prefix() ] query_pk_and_slug queryset [ get_queryset() ] response_class [ render_to_resp ...
-
https://man.plustar.jp/django/ref/class-based-views/flattened-index.html
- [similar]
- 多対一 (many-to-one) 関係 — Django 4.0.6 ドキュメント 9185
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
e2 . reporter . id 1 >>> r . article_set . all () <QuerySet [<Article: John's second story>, <Article: Paul's ...
eporter: Paul Jones> >>> r . article_set . all () <QuerySet [<Article: John's second story>, <Article: This is ...
a test>]> >>> r2 . article_set . all () <QuerySet [<Article: Paul's story>]> >>> r . article_set . c ...
le_set . filter ( headline__startswith = 'This' ) <QuerySet [<Article: This is a test>]> # Find all Articles f ...
-
https://man.plustar.jp/django/topics/db/examples/many_to_one.html
- [similar]
- データベースアクセスの最適化 — Django 4.0.6 ドキュメント 9127
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
クエリを実行し何がコストなのか を判別してください。 QuerySet.explain() を使用し、データベース上で特定の QuerySe ...
sive operations, such as general purpose caching . QuerySet を理解する ¶ QuerySet を理解することは、シンプルな ...
でパフォーマンスを上げるために極めて重要です。特に: QuerySet の評価を理解する ¶ パフォーマンスの問題を回避するに ...
は、以下を理解することが重要です: QuerySet は lazy であること。 いつ QuerySet が評価されるのか ...
-
https://man.plustar.jp/django/topics/db/optimization.html
- [similar]
- Admin actions — Django 4.0.6 ドキュメント 9057
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
択したオブジェクトの削除" アクションは効率の観点から QuerySet.delete() を使用します。使用したモデルの delete() メ ...
this behavior, you can override ModelAdmin.delete_queryset() or write a custom action which does deletion in ...
n An HttpRequest representing the current request, QuerySet はユーザーによって選択されたオブジェクトを含みます ...
elAdmin or the request object, but we will use the queryset: def make_published ( modeladmin , request , query ...
-
https://man.plustar.jp/django/ref/contrib/admin/actions.html
- [similar]
- PostgreSQL specific model fields — Django 4.0.6 ドキュメント 9023
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
jects . filter ( tags__contains = [ 'thoughts' ]) <QuerySet [<Post: First post>, <Post: Second post>]> >>> Pos ...
objects . filter ( tags__contains = [ 'django' ]) <QuerySet [<Post: First post>, <Post: Third post>]> >>> Post ...
ter ( tags__contains = [ 'django' , 'thoughts' ]) <QuerySet [<Post: First post>]> contained_by ¶ This is the i ...
( tags__contained_by = [ 'thoughts' , 'django' ]) <QuerySet [<Post: First post>, <Post: Second post>]> >>> Pos ...
-
https://man.plustar.jp/django/ref/contrib/postgres/fields.html
- [similar]
- Django 1.6 release notes — Django 4.0.6 ドキュメント 8606
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
nes introduced in Django 1.4 didn't work well with QuerySet.dates() : aggregation was always performed in UTC. ...
This limitation was lifted in Django 1.6. Use QuerySet.datetimes() to perform time zone aware aggregation ...
CSRF cookie with CSRF_COOKIE_HTTPONLY . The assertQuerysetEqual() now checks for undefined order and raises V ...
otted. The order is seen as undefined if the given QuerySet isn't ordered and there is more than one ordered v ...
-
https://man.plustar.jp/django/releases/1.6.html
- [similar]