Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Association ¶
type Association interface { Kind() reflect.Kind Interface() interface{} Constraint() (string, []interface{}) InnerAssociations() InnerAssociations Skipped() bool }
Association represents a definition of a model association field. It can represent a association of the type has_many belongs_to or has_one, and other customized types.
type AssociationAfterCreatable ¶
type AssociationAfterCreatable interface { AfterInterface() interface{} AfterSetup() error Association }
type AssociationBeforeCreatable ¶
type AssociationBeforeCreatable interface { BeforeInterface() interface{} BeforeSetup() error Association }
type AssociationCreatableStatement ¶
type AssociationCreatableStatement interface { Statements() []AssociationStatement Association }
AssociationCreatableStatement a association that defines create statements on database.
type AssociationSortable ¶
type AssociationSortable interface { OrderBy() string Association }
AssociationSortable a type to be sortable.
type AssociationStatement ¶
type AssociationStatement struct { Statement string Args []interface{} }
AssociationStatement a type that represents a statement to be executed.
type Associations ¶
type Associations []Association
Associations a group of model associations.
func AssociationsForStruct ¶
func AssociationsForStruct(s interface{}, fields ...string) (Associations, error)
AssociationsForStruct returns all associations for the struct specified. It takes into account tags associations like has_many, belongs_to, has_one. it throws an error when it finds a field that does not exist for a model.
func (Associations) AssociationsAfterCreatable ¶
func (a Associations) AssociationsAfterCreatable() []AssociationAfterCreatable
AssociationsAfterCreatable returns all associations that implement AssociationAfterCreatable interface. Has Many and Has One associations are example of this implementation.
func (Associations) AssociationsBeforeCreatable ¶
func (a Associations) AssociationsBeforeCreatable() []AssociationBeforeCreatable
AssociationsBeforeCreatable returns all associations that implement AssociationBeforeCreatable interface. Belongs To association is an example of this implementation.
func (Associations) AssociationsCreatableStatement ¶
func (a Associations) AssociationsCreatableStatement() []AssociationCreatableStatement
AssociationsCreatableStatement returns all associations that implement AssociationCreatableStament interface. Many To Many association is an example of this implementation.
type InnerAssociation ¶
InnerAssociation is a struct that represents a deep level association. per example Song.Composer, Composer is an inner association for Song.
type InnerAssociations ¶
type InnerAssociations []InnerAssociation
InnerAssociations is a group of InnerAssociation.