A customer data object references an address as depicted by the data model below. How would you define the address property in the customer class?
A customer data object references an address as depicted by the data model below. How would you define the address property in the customer class?
In this data model, a customer has a one-to-one relationship with an address. This implies that each customer has exactly one address, which is best represented by a single page in data modeling terms. A 'page' in this context is used to define an embedded object. Therefore, the address property in the customer class should be defined as a page.
B - Page. This is an embedded object.