Update of /cvsroot/springnet/Spring.Net/src/Spring/Spring.Data.NHibernate12/Data/NHibernate
In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv10917/Data/NHibernate
Modified Files:
LocalSessionFactoryObject.cs
Log Message:
misc updates, doc cleanup, code regions.
Added getter for DbProvider in LocalSessionFactoryObject
Index: LocalSessionFactoryObject.cs
===================================================================
RCS file: /cvsroot/springnet/Spring.Net/src/Spring/Spring.Data.NHibernate12/Data/NHibernate/LocalSessionFactoryObject.cs,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -d -r1.10 -r1.11
*** LocalSessionFactoryObject.cs 25 Feb 2008 20:39:12 -0000 1.10
--- LocalSessionFactoryObject.cs 21 Mar 2008 14:12:08 -0000 1.11
***************
*** 170,174 ****
/// <summary>
! /// Set the DataSource to be used by the SessionFactory.
/// </summary>
/// <value>The db provider.</value>
--- 170,174 ----
/// <summary>
! /// Get or set the DataSource to be used by the SessionFactory.
/// </summary>
/// <value>The db provider.</value>
***************
*** 183,186 ****
--- 183,187 ----
{
set { dbProvider = value; }
+ get { return dbProvider; }
}
***************
*** 240,244 ****
/// default location.
/// </summary>
! public void AfterPropertiesSet()
{
// Create Configuration instance.
--- 241,245 ----
/// default location.
/// </summary>
! public virtual void AfterPropertiesSet()
{
// Create Configuration instance.
|