Table of Contents

AssociationAttribute.Create Constructor

Overloads

AssociationAttribute.Create

Creates an AssociationAttribute with no properties and no cascade.

Syntax

Unit: Aurelius.Mapping.Attributes

constructor AssociationAttribute.Create;

See also

AssociationAttribute.Create(TAssociationProps)

Creates an AssociationAttribute with the specified association properties.

Syntax

Unit: Aurelius.Mapping.Attributes

constructor AssociationAttribute.Create(AProperties: TAssociationProps);

Parameters

<-> Parameter Type Description
AProperties TAssociationProps A set of TAssociationProp flags (e.g., Lazy, Required).

See also

AssociationAttribute.Create(TAssociationProps, TCascadeTypes)

Creates an AssociationAttribute with association properties and cascade behaviour.

Syntax

Unit: Aurelius.Mapping.Attributes

constructor AssociationAttribute.Create(AProperties: TAssociationProps; Cascade: TCascadeTypes);

Parameters

<-> Parameter Type Description
AProperties TAssociationProps A set of TAssociationProp flags.
Cascade TCascadeTypes A set of TCascadeType values controlling which persistence operations are propagated to the associated object.

See also