New Issues
Let’s learn about some of the new issues we’ll face when we add non-functional associations.
We'll cover the following...
Issues to deal with
Similar to when we deal with a functional association, as discussed in the previous chapter, we now have to deal with the following new technical issues:
-
In the model code, we now have to the following multi-valued reference properties require implementation:
-
An
add
method and aremove
method, such asaddAuthor
andremoveAuthor
. In addition to ...
-