InterviewSolution
| 1. |
Explain What The Junction Object Is And What Is The Use? |
|
Answer» Junction OBJECTS are used to build MANY-to-many relationships between objects. You can take a recruiting application example, where a POSITION for a job can be LINKED to many CANDIDATES and in the same manner a candidate can be linked to the different positions. So, to connect this data model, you need a third party object, this object is referred as junction object. Here “job application” is the junction object. Junction objects are used to build many-to-many relationships between objects. You can take a recruiting application example, where a position for a job can be linked to many candidates and in the same manner a candidate can be linked to the different positions. So, to connect this data model, you need a third party object, this object is referred as junction object. Here “job application” is the junction object. |
|