From: Peter S. <sz...@us...> - 2004-04-13 10:39:47
|
Update of /cvsroot/nhibernate/nhibernate/src/NHibernate.Test In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24792/NHibernate.Test Modified Files: FooBarTest.cs Log Message: Added dummy formula class, fixed small typo, and foo test entity. Found another quoting problem. Index: FooBarTest.cs =================================================================== RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate.Test/FooBarTest.cs,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** FooBarTest.cs 9 Apr 2004 16:18:01 -0000 1.5 --- FooBarTest.cs 13 Apr 2004 10:25:46 -0000 1.6 *************** *** 31,35 **** // "Container.hbm.xml", // "XY.hbm.xml"}); ! }, false); } --- 31,35 ---- // "Container.hbm.xml", // "XY.hbm.xml"}); ! }, true); } *************** *** 45,48 **** --- 45,49 ---- baz.fooBag=fooBag; s.Save(baz); + s.Flush(); fooBag = baz.fooBag; s.Find("from Baz baz left join fetch baz.fooBag"); |