Update of /cvsroot/modeling/ProjectModeling/Modeling/doc/UserGuide
In directory sc8-pr-cvs1:/tmp/cvs-serv19441/Modeling/doc/UserGuide
Modified Files:
DefiningaModel.tex
Log Message:
misc. update
Index: DefiningaModel.tex
===================================================================
RCS file: /cvsroot/modeling/ProjectModeling/Modeling/doc/UserGuide/DefiningaModel.tex,v
retrieving revision 1.37
retrieving revision 1.38
diff -C2 -d -r1.37 -r1.38
*** DefiningaModel.tex 31 Aug 2003 17:32:25 -0000 1.37
--- DefiningaModel.tex 31 Aug 2003 17:38:07 -0000 1.38
***************
*** 1855,1860 ****
\subsection{Modeling many-to-many relationships\label{design-rels-many-to-many}}
! Many-to-many relationships are not automatically handled by the framework yet,
! however they can be modeled and used as such.
We'll first examine how many-to-many relationships are mapped in relational
--- 1855,1860 ----
\subsection{Modeling many-to-many relationships\label{design-rels-many-to-many}}
! Many-to-many relationships are not \emph{automatically handled} by the
! framework yet, however they can be modeled and used with minimal efforts.
We'll first examine how many-to-many relationships are mapped in relational
***************
*** 1937,1943 ****
----+-----------+------------
1 | 1 | 1 # p1 <--> a1
! 2 | 1 | 2 # p1 <--> a2
! 3 | 2 | 1 # p2 <--> a1
! 4 | 3 | 3 # p3 <--> a3
5 | 3 | 1 # p3 <--> a1
\end{verbatim}
--- 1937,1943 ----
----+-----------+------------
1 | 1 | 1 # p1 <--> a1
! 2 | 1 | 2 # p1 <--> a2
! 3 | 2 | 1 # p2 <--> a1
! 4 | 3 | 3 # p3 <--> a3
5 | 3 | 1 # p3 <--> a1
\end{verbatim}
***************
*** 1991,1999 ****
model.associations=[
Association('PersonAddress','Person',
! relations=['person','personAddresses'],
! delete=['nullify','cascade'] ),
Association('PersonAddress','Address',
! relations=['address','personAddresses'],
! delete=['nullify','deny'] ),
]
\end{verbatim}
--- 1991,1999 ----
model.associations=[
Association('PersonAddress','Person',
! relations=['person','personAddresses'],
! delete=['nullify','cascade'] ),
Association('PersonAddress','Address',
! relations=['address','personAddresses'],
! delete=['nullify','deny'] ),
]
\end{verbatim}
|