3
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Djangoでよく使うQuerySetを共通化する

Last updated at Posted at 2021-09-29

Managerを使う

結論からお話しするとManagerを使用します。
もちろんこのほかにも方法はありますがこの方法が一番ベターかと。

#実装する

今回使用するmodels.pyはこちら。

models.py
class Charge(models.Model):
    amount = models.DecimalField(max_digits=8, decimal_places=2)
    month = models.DateField()

    class Meta:
        db_table = "charge"

カスタムマネージャーを追加

Chargeモデルからidを元に一つのオブジェクトを取得するメソッドを追加します。
そして次にChargeモデルのカスタムマネージャーをモデルに追加します。

models.py
from django.core.exceptions import ObjectDoesNotExist

class ChargeManager(models.Manager):
    def find(self, charge_id):
        queryset = self.get_queryset()
        try:
            return queryset.get(pk=charge_id)
        except ObjectDoesNotExist:
            return None

class Charge(models.Model):

# ...
# カスタムマネージャーを追加
    objects = ChargeManager()

これでCharge.objects.find("charge_id")と書くことで実行することができます。
この方法ではManagerに複数のメソッドを持たせてそれを組み合わせてより複雑なクエリセットを作ることも可能です。

参考

3
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?