I have a class
class PlayerSoul(ModelAbstract, ModelBatchSaveHelper):
player = models.ForeignKey(Player)
......
When I call
PlayerSoul.objects.all()
PlayerSoul.objects.get()
there is always an additional query for Player.
Can I delay the query for Player until I really use it.
No comments:
Post a Comment