From: <fab...@us...> - 2010-07-22 12:05:47
|
Revision: 5040 http://nhibernate.svn.sourceforge.net/nhibernate/?rev=5040&view=rev Author: fabiomaulo Date: 2010-07-22 12:05:41 +0000 (Thu, 22 Jul 2010) Log Message: ----------- Fix NH-2247 Modified Paths: -------------- trunk/nhibernate/doc/reference/modules/manipulating_data.xml Modified: trunk/nhibernate/doc/reference/modules/manipulating_data.xml =================================================================== --- trunk/nhibernate/doc/reference/modules/manipulating_data.xml 2010-07-22 05:39:46 UTC (rev 5039) +++ trunk/nhibernate/doc/reference/modules/manipulating_data.xml 2010-07-22 12:05:41 UTC (rev 5040) @@ -772,7 +772,8 @@ It is possible to change the default behavior so that flush occurs less frequently. The <literal>FlushMode</literal> class defines three different modes: only flush at commit time (and only when the NHibernate <literal>ITransaction</literal> - API is used), flush automatically using the explained routine, or never flush unless + API is used), flush automatically using the explained routine (will only work inside an explicit NHibernate <literal>ITransaction</literal>), + or never flush unless <literal>Flush()</literal> is called explicitly. The last mode is useful for long running units of work, where an ISession is kept open and disconnected for a long time (see <xref linkend="transactions-optimistic" />). This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |