my_model_instance = MyModel.objects.select_for_update().get(id=1)
something_related = my_model_instance.related_thing
上記のコードでは、外部キーによってrelated_thing
関連付けられた別のモデル インスタンスです。my_model_instance
元々 をやったのでselect_for_update()
、related_thing
もロックされますか?