Indicates the type of the association.

Namespace:  Mindscape.LightSpeed.MetaData
Assembly:  Mindscape.LightSpeed.MetaData (in Mindscape.LightSpeed.MetaData.dll)
Version: 4.0.1000.1 (4.0.0.0)

Syntax

C#
public enum AssociationType
Visual Basic (Declaration)
Public Enumeration AssociationType

Members

Member nameDescription
OneToOne
This is a One to One association between the two entities involved.
OneToMany
This is a One to Many association between the two entities involved.

Remarks

LightSpeed does not indicate the direction of the association, so a child to parent association will be returned as a OneToMany. Similarly Many to Many associations are handled using a Through entity which will have a corresponding OneToMany relations against the two entities using the ThroughAssociation.

See Also