Modeling Relationships
Interface Product {
attribute string name;
attribute float price;
relationship <Company> madeBy;
}
Interface Company {
attribute string name;
attribute float stock-price;
attribute string address;
}
How do we incorporate the relationship madeBy into the schema?
Previous slide
Next slide
Back to first slide
View graphic version