from django.db import connection # Used for django tenants.
# I am assuming you are in the main public tenant.
connection.set_schema_to_public() # Switch to Public.
# Here is how you switch to a different tenant.
connection.set_schema("the-schema-name-of-your-tenant", True) # Switch to Tenant.
# You are now in the tenant you want, therefore any call you make will be made from that db schema.
# Therefore making this call is all you need after.
object = TableOne.objects.first()