Update of /cvsroot/nhibernate/nhibernate/doc/reference/en/modules
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23746
Modified Files:
basic_mapping.xml
Log Message:
replaced reference to Aspect# with Castle.DynamicProxy in proxy
documentation.
Index: basic_mapping.xml
===================================================================
RCS file: /cvsroot/nhibernate/nhibernate/doc/reference/en/modules/basic_mapping.xml,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** basic_mapping.xml 15 Jan 2005 18:07:44 -0000 1.7
--- basic_mapping.xml 16 Jan 2005 15:10:03 -0000 1.8
***************
*** 250,256 ****
<para>
The optional <literal>proxy</literal> attribute enables lazy initialization of persistent
! instances of the class. NHibernate will initially return Aspect# proxies which implement
! the named interface. The actual persistent object will be loaded when a method of the
! proxy is invoked. See "Proxies for Lazy Initialization" below.
</para>
--- 250,256 ----
<para>
The optional <literal>proxy</literal> attribute enables lazy initialization of persistent
! instances of the class. NHibernate will initially return proxies generated by Castle.DynamicProxy
! which implement the named interface or extend the class. The actual persistent object will be
! loaded when a method of the proxy is invoked. See "Proxies for Lazy Initialization" below.
</para>
|