InterviewSolution
Saved Bookmarks
| 1. |
What is many-to-one association? |
|
Answer» A many-to-one association is the most common kind of association where an Object can be associated with multiple objects. For example a same address object can be associated with multiple employee objects. <many-to-one> element is used to define many-to-one association. The name attribute is set to the defined variable in the parent class. The column attribute is used to set the column name in the parent table. |
|