Update of /cvsroot/nhibernate/nhibernate/src/NHibernate/Engine
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24621/NHibernate/Engine
Modified Files:
ISessionImplementor.cs
Log Message:
Added more comments around Enumerable implementation.
Index: ISessionImplementor.cs
===================================================================
RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate/Engine/ISessionImplementor.cs,v
retrieving revision 1.24
retrieving revision 1.25
diff -C2 -d -r1.24 -r1.25
*** ISessionImplementor.cs 28 Nov 2004 21:47:46 -0000 1.24
--- ISessionImplementor.cs 29 Nov 2004 18:43:20 -0000 1.25
***************
*** 112,118 ****
/// This method may create a new proxy or return an existing proxy.
/// </summary>
! /// <param name="persistentClass"></param>
! /// <param name="id"></param>
! /// <returns></returns>
object InternalLoad(System.Type persistentClass, object id);
--- 112,121 ----
/// This method may create a new proxy or return an existing proxy.
/// </summary>
! /// <param name="persistentClass">The <see cref="System.Type"/> to load.</param>
! /// <param name="id">The identifier of the object in the database.</param>
! /// <returns>
! /// A proxy of the object or an instance of the object if the <c>persistentClass</c> does not have a proxy.
! /// </returns>
! /// <exception cref="ObjectNotFoundException">No object could be found with that <c>id</c>.</exception>
object InternalLoad(System.Type persistentClass, object id);
|