Opadeez Help Center

Links / Relationships

Overview

Links define relationships between entities in your data model, establishing how different business objects connect to each other. They create the foundation for data navigation, enforce referential integrity, and enable users to move seamlessly between related information.

Links Configuration

Links interface showing relationship configuration between entities

Link Definition Properties

Link Name

Entity From

Entity To

Cardinality

Exclusive

Field Name (Optional)

Foreign Key Placement

The location of the foreign key depends on the cardinality and exclusivity settings:

Cardinality Exclusive = No Exclusive = Yes
0 (many) Entity From N/A
1 Entity From Entity To
>1 Entity From N/A
Note: Foreign key is placed in "Entity From" by default, except when cardinality=1 and exclusive=true, where it moves to "Entity To". N/A indicates impossible combinations (exclusive relationships with multiple cardinality).

Relationship Types and Examples

One-to-Many Relationships

Most common relationship type where one entity can have multiple related entities:

Customer-Project Example

Order-OrderItem Example

One-to-One Relationships

Exclusive relationships where entities have a unique connection:

Employee-EmployeeProfile Example

Many-to-Many Relationships

Complex relationships where entities can have multiple connections:

Student-Course Example

Database Implementation

Foreign Key Creation

Referential Integrity

Navigation and User Experience

Data Navigation

DataSet Integration

Best Practices

Link Design

Performance Optimization

Data Integrity

Common Patterns

Master-Detail Relationships

Hierarchical Relationships

Association Relationships

Troubleshooting Common Issues

Cardinality Violations

Exclusivity Conflicts

Circular References

Getting Started

Ready to create entity relationships? Follow these resources:

Related Topics

Pro Tip: Start with simple one-to-many relationships, then add complexity as needed. Well-designed links are the foundation of intuitive data navigation and user experience.