From: Michael D. <mik...@us...> - 2005-02-07 01:34:49
|
Update of /cvsroot/nhibernate/nhibernate/src/NHibernate/Engine In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10106/Engine Modified Files: ISessionImplementor.cs Log Message: modifications to Collections and their Types for caching related code. Formatting of the Visitor classes and added in two missing Visitors. Index: ISessionImplementor.cs =================================================================== RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate/Engine/ISessionImplementor.cs,v retrieving revision 1.27 retrieving revision 1.28 diff -C2 -d -r1.27 -r1.28 *** ISessionImplementor.cs 6 Feb 2005 01:58:57 -0000 1.27 --- ISessionImplementor.cs 7 Feb 2005 01:34:40 -0000 1.28 *************** *** 78,81 **** --- 78,90 ---- void EndLoadingCollections(); + /// <summary> + /// Gets the NHibernate collection wrapper from the ISession. + /// </summary> + /// <param name="role"></param> + /// <param name="id"></param> + /// <param name="owner"></param> + /// <returns> + /// A NHibernate wrapped collection. + /// </returns> object GetCollection( string role, object id, object owner ); |