From: Michael D. <mik...@us...> - 2004-10-14 04:33:38
|
Update of /cvsroot/nhibernate/nhibernate/src/NHibernate/Persister In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13630/Persister Modified Files: NormalizedEntityPersister.cs Log Message: removed some old comments. Index: NormalizedEntityPersister.cs =================================================================== RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate/Persister/NormalizedEntityPersister.cs,v retrieving revision 1.32 retrieving revision 1.33 diff -C2 -d -r1.32 -r1.33 *** NormalizedEntityPersister.cs 21 Sep 2004 09:58:24 -0000 1.32 --- NormalizedEntityPersister.cs 14 Oct 2004 04:33:14 -0000 1.33 *************** *** 195,202 **** //MULTITABLES - // TODO - find out when multitables are used?? I have only come at this through the debug - // for the base class (RootClass). This might become a little bit more clear when I come at this through - // the subclass (Subclass). - // these two will later be converted into arrays for the fields tableNames and tableKeyColumns ArrayList tables = new ArrayList(); --- 195,198 ---- *************** *** 256,261 **** this.subclassTableKeyColumns = (string[][]) keyColumns.ToArray( typeof(string[]) ); - //TODO: figure out exactly how this field is being used. I know that for our Simple example - // the values for the base class are isClassOrSuperclassTable[0] = true; [1] = false; this.isClassOrSuperclassTable = new bool[ this.subclassTableNameClosure.Length ]; for (int j=0; j<subclassTableNameClosure.Length; j++ ) --- 252,255 ---- |