Class RawQuerySet
Provide an iterator which converts the results of raw SQL queries into annotated model instances.
Declaration
class RawQuerySet
source linkDocumentation
Methods
▶ def __init__(self, raw_query, model=None, query=None, params=None, translations=None, ...) def __init__(
self,
raw_query,
model=None,
query=None,
params=None,
translations=None,
using=None,
hints=None,
)
▷ def columns(self) @cached_property A list of model field names in the order they'll appear in the query results.
@cached_property
def columns(self)
▷ def db(self) @property Return the database used if this query is executed now.
▷ def model_fields(self) @cached_property A dict mapping column names to model field names.
@cached_property
def model_fields(self)
▷ def using(self, alias) Select the database this RawQuerySet should execute against.