ExperimentalStudy¶
-
class
database.models.ExperimentalStudy(*args, **kwargs)¶ Bases:
database.models.custom_base_model.CustomBaseModelAn empirical study based on a particular Research Corpus.
-
title¶ models.CharField – The title of the Experimental Study
-
published¶ models.BooleanField – Whether or not the Experimental Study was published
-
date¶ models.DateField – The date in which the Experimental Study was published or performed
-
link¶ models.URLField – A link to the a paper of the Experimental Study
-
research_corpus_used¶ models.ForeignKey – A reference to the Research Corpus upon which the Experimental Study is based
-
institution¶ models.ForeignKey – A reference to the Institution related to this ExperimentalStudy
models.CharField – The authors of this Experimental Study
See also
database.models.CustomBaseModel,database.models.ResearchCorpus,database.models.InstitutionAttributes Summary
authorsA wrapper for a deferred-loading field. dateA wrapper for a deferred-loading field. idA wrapper for a deferred-loading field. institutionAccessor to the related object on the forward side of a many-to-one or one-to-one (via ForwardOneToOneDescriptor subclass) relation. institution_idA wrapper for a deferred-loading field. linkA wrapper for a deferred-loading field. objectspublishedA wrapper for a deferred-loading field. research_corpus_usedAccessor to the related object on the forward side of a many-to-one or one-to-one (via ForwardOneToOneDescriptor subclass) relation. research_corpus_used_idA wrapper for a deferred-loading field. titleA wrapper for a deferred-loading field. Methods Summary
get_next_by_date_created(*[, field, is_next])get_next_by_date_updated(*[, field, is_next])get_previous_by_date_created(*[, field, is_next])get_previous_by_date_updated(*[, field, is_next])Attributes Documentation
-
authors A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
-
date A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
-
id¶ A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
-
institution Accessor to the related object on the forward side of a many-to-one or one-to-one (via ForwardOneToOneDescriptor subclass) relation.
In the example:
class Child(Model): parent = ForeignKey(Parent, related_name='children')
Child.parentis aForwardManyToOneDescriptorinstance.
-
institution_id¶ A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
-
link A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
-
objects= <django.db.models.manager.Manager object>¶
-
published A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
-
research_corpus_used Accessor to the related object on the forward side of a many-to-one or one-to-one (via ForwardOneToOneDescriptor subclass) relation.
In the example:
class Child(Model): parent = ForeignKey(Parent, related_name='children')
Child.parentis aForwardManyToOneDescriptorinstance.
-
research_corpus_used_id¶ A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
-
title A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
Methods Documentation
-
get_next_by_date_created(*, field=<django.db.models.fields.DateTimeField: date_created>, is_next=True, **kwargs)¶
-
get_next_by_date_updated(*, field=<django.db.models.fields.DateTimeField: date_updated>, is_next=True, **kwargs)¶
-
get_previous_by_date_created(*, field=<django.db.models.fields.DateTimeField: date_created>, is_next=False, **kwargs)¶
-
get_previous_by_date_updated(*, field=<django.db.models.fields.DateTimeField: date_updated>, is_next=False, **kwargs)¶
-