Turn off any dereferencing for the results of this queryset.
(self)
| 1786 | return should_deref and self.__auto_dereference |
| 1787 | |
| 1788 | def no_dereference(self): |
| 1789 | """Turn off any dereferencing for the results of this queryset.""" |
| 1790 | queryset = self.clone() |
| 1791 | queryset.__auto_dereference = False |
| 1792 | return queryset |
| 1793 | |
| 1794 | # Helper Functions |
| 1795 |