Update of /cvsroot/springnet/Spring.Net/doc/reference/src
In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv1752
Modified Files:
ado.xml index.xml objects.xml orm.xml
Log Message:
doc improvements.
Index: index.xml
===================================================================
RCS file: /cvsroot/springnet/Spring.Net/doc/reference/src/index.xml,v
retrieving revision 1.75
retrieving revision 1.76
diff -C2 -d -r1.75 -r1.76
*** index.xml 11 Oct 2007 16:05:50 -0000 1.75
--- index.xml 6 Dec 2007 06:26:30 -0000 1.76
***************
*** 54,59 ****
<title>The Spring.NET Framework</title>
<subtitle>Reference Documentation</subtitle>
! <releaseinfo>Version 1.1 RC2</releaseinfo>
! <pubdate>Last Updated October 15, 2007</pubdate>
<authorgroup>
<author>
--- 54,59 ----
<title>The Spring.NET Framework</title>
<subtitle>Reference Documentation</subtitle>
! <releaseinfo>Version 1.1 final</releaseinfo>
! <pubdate>Last Updated December 7, 2007</pubdate>
<authorgroup>
<author>
Index: orm.xml
===================================================================
RCS file: /cvsroot/springnet/Spring.Net/doc/reference/src/orm.xml,v
retrieving revision 1.12
retrieving revision 1.13
diff -C2 -d -r1.12 -r1.13
*** orm.xml 3 Oct 2007 14:38:35 -0000 1.12
--- orm.xml 6 Dec 2007 06:26:31 -0000 1.13
***************
*** 200,204 ****
a data access layer also configured using XML. An XML fragment showing
the declaration of <classname>HibernateTransactionManager</classname> is
! shown below. </para>
<programlisting> <object id="HibernateTransactionManager"
--- 200,204 ----
a data access layer also configured using XML. An XML fragment showing
the declaration of <classname>HibernateTransactionManager</classname> is
! shown below.</para>
<programlisting> <object id="HibernateTransactionManager"
***************
*** 298,301 ****
--- 298,310 ----
</objects></programlisting>
+
+ <para>The location of NHibernate mapping information can also be
+ specified using Spring's <link linkend="resources">IResource
+ abstraction</link> via the property <literal>MappingResources</literal>.
+ The IResource abstraction supports opening and input stream from
+ assemblies, file system, and http(s) based on a uri syntax. You can also
+ leverage the extensiblity of IResoure and thereby allow NHibernate to
+ obtain its configuration information from locations such as a database
+ or ldap. </para>
</section>
Index: ado.xml
===================================================================
RCS file: /cvsroot/springnet/Spring.Net/doc/reference/src/ado.xml,v
retrieving revision 1.20
retrieving revision 1.21
diff -C2 -d -r1.20 -r1.21
*** ado.xml 27 Nov 2007 21:01:42 -0000 1.20
--- ado.xml 6 Dec 2007 06:26:30 -0000 1.21
***************
*** 85,91 ****
<listitem>
! <para>Mapping DBNull values - Strategy for providing centralized and
! transparent mapping of DBNull values to CLR types when accessing an
! IDataReader.</para>
</listitem>
--- 85,93 ----
<listitem>
[...1007 lines suppressed...]
! {
! DeriveParameters();
! AddRowMapper("orderDetailRowMapper", new OrderDetailRowMapper<OrderDetails>() );
! Compile();
! }
!
! public virtual List<OrderDetails> GetOrderDetails(int orderid)
! {
!
! IDictionary outParams = Query<OrderDetails>(orderid);
! return outParams["orderDetailRowMapper"] as List<OrderDetails>;
! }
!
! }</programlisting>
!
! <para>You can find ready to run code demonstrating the StoredProcedure
! class in the example 'Data Access' that is part of the Spring.NET
! distribution.</para>
</sect2>
</sect1>
Index: objects.xml
===================================================================
RCS file: /cvsroot/springnet/Spring.Net/doc/reference/src/objects.xml,v
retrieving revision 1.109
retrieving revision 1.110
diff -C2 -d -r1.109 -r1.110
*** objects.xml 27 Nov 2007 21:01:42 -0000 1.109
--- objects.xml 6 Dec 2007 06:26:30 -0000 1.110
***************
*** 3918,3922 ****
</sect3>
! <sect3>
<title>IVariableSource</title>
--- 3918,3922 ----
</sect3>
! <sect3 id="objects-variablesource">
<title>IVariableSource</title>
|