Update of /cvsroot/nhibernate/nhibernate/src/NHibernate/Impl
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27554/NHibernate/Impl
Modified Files:
SessionFactoryImpl.cs
Log Message:
I modified - a few thing :)
Index: SessionFactoryImpl.cs
===================================================================
RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate/Impl/SessionFactoryImpl.cs,v
retrieving revision 1.13
retrieving revision 1.14
diff -C2 -d -r1.13 -r1.14
*** SessionFactoryImpl.cs 13 Apr 2004 14:59:17 -0000 1.13
--- SessionFactoryImpl.cs 15 Apr 2004 11:36:35 -0000 1.14
***************
*** 327,331 ****
}
*/
! QueryTranslator q = new QueryTranslator();
q.Compile(this, query, querySubstitutions, shallow);
--- 327,331 ----
}
*/
! QueryTranslator q = new QueryTranslator(dialect);
q.Compile(this, query, querySubstitutions, shallow);
***************
*** 340,344 ****
if ( q==null )
{
! q = new FilterTranslator();
Put(cacheKey, q);
}
--- 340,344 ----
if ( q==null )
{
! q = new FilterTranslator(dialect);
Put(cacheKey, q);
}
|