db.models.query.QuerySet.update_or_create()
  • References/Python/Django/API/Models/QuerySet API reference

update_or_create(defaults=None, **kwargs) A convenience method for updating an object with the given kwargs, creating

2025-01-10 15:47:30
db.models.Field.one_to_many
  • References/Python/Django/API/Models/Model field reference

Field.one_to_many Boolean flag that is True if the field has a one-to-many relation, such as a GenericRelation

2025-01-10 15:47:30
db.models.Transform.lookup_name
  • References/Python/Django/API/Models/Lookup API reference

lookup_name The name of the lookup, used for identifying it on parsing query expressions. It cannot contain the string "__"

2025-01-10 15:47:30
db.models.Aggregate
  • References/Python/Django/API/Models/Query Expressions

class Aggregate(expression, output_field=None, **extra) [source]

2025-01-10 15:47:30
db.models.Aggregate.template
  • References/Python/Django/API/Models/Query Expressions

template A class attribute, as a format string, that describes the SQL that is generated for this aggregate. Defaults to '%(function)s(

2025-01-10 15:47:30
db.models.functions.Length
  • References/Python/Django/API/Models/Database Functions

class Length(expression, **extra) [source] Accepts a single text field or expression and

2025-01-10 15:47:30
db.models.Options.app_label
  • References/Python/Django/API/Models/Model Meta options

Options.app_label If a model is defined outside of an application in INSTALLED_APPS, it must declare which app

2025-01-10 15:47:30
db.models.Lookup.process_rhs()
  • References/Python/Django/API/Models/Lookup API reference

process_rhs(compiler, connection) [source] Behaves the same way as process_lhs()

2025-01-10 15:47:30
db.models.Lookup.lookup_name
  • References/Python/Django/API/Models/Lookup API reference

lookup_name The name of this lookup, used to identify it on parsing query expressions. It cannot contain the string "__"

2025-01-10 15:47:30
db.models.ManyToManyField.through
  • References/Python/Django/API/Models/Model field reference

ManyToManyField.through Django will automatically generate a table to manage many-to-many relationships. However, if you want

2025-01-10 15:47:30