|
From: <fab...@us...> - 2010-07-22 16:10:12
|
Revision: 5047
http://nhibernate.svn.sourceforge.net/nhibernate/?rev=5047&view=rev
Author: fabiomaulo
Date: 2010-07-22 16:10:05 +0000 (Thu, 22 Jul 2010)
Log Message:
-----------
Fix NH-2083
Modified Paths:
--------------
trunk/nhibernate/doc/reference/modules/basic_mapping.xml
Modified: trunk/nhibernate/doc/reference/modules/basic_mapping.xml
===================================================================
--- trunk/nhibernate/doc/reference/modules/basic_mapping.xml 2010-07-22 15:56:09 UTC (rev 5046)
+++ trunk/nhibernate/doc/reference/modules/basic_mapping.xml 2010-07-22 16:10:05 UTC (rev 5047)
@@ -102,13 +102,18 @@
<area id="hm3" coords="4 55"/>
<area id="hm4" coords="5 55"/>
<area id="hm5" coords="6 55"/>
+ <area id="hm6" coords="7 55"/>
+ <area id="hm7" coords="8 55"/>
</areaspec>
- <programlisting><![CDATA[<hibernate-mapping
+ <programlisting>
+ <![CDATA[<hibernate-mapping
schema="schemaName"
default-cascade="none|save-update"
auto-import="true|false"
assembly="Eg"
namespace="Eg"
+ default-access="field|property|field.camecase..."
+ default-lazy="true|false"
/>]]></programlisting>
<calloutlist>
<callout arearefs="hm1">
@@ -136,6 +141,18 @@
document.
</para>
</callout>
+ <callout arearefs="hm6">
+ <para>
+ <literal>default-access</literal> (optional - defaults to property):
+ The strategy NHibernate should use for accessing a property value
+ </para>
+ </callout>
+ <callout arearefs="hm7">
+ <para>
+ <literal>default-lazy</literal> (optional - defaults to <literal>true</literal>):
+ Lazy fetching may be completely disabled by setting default-lazy="false".
+ </para>
+ </callout>
</calloutlist>
</programlistingco>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|