Update of /cvsroot/nhibernate/nhibernate/src/NHibernate/Loader
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4864/nhibernate/src/NHibernate/Loader
Modified Files:
OneToManyLoader.cs
Log Message:
Fixes NH-229/NH-230, silly bug where a new SqlString was constructed but not assigned!
Index: OneToManyLoader.cs
===================================================================
RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate/Loader/OneToManyLoader.cs,v
retrieving revision 1.16
retrieving revision 1.17
diff -C2 -d -r1.16 -r1.17
*** OneToManyLoader.cs 14 Mar 2005 18:53:03 -0000 1.16
--- OneToManyLoader.cs 14 Mar 2005 22:35:52 -0000 1.17
***************
*** 125,129 ****
if( collectionPersister.HasWhere )
{
! whereSqlString.Append( " and " ).Append( collectionPersister.GetSQLWhereString( alias ) );
}
--- 125,129 ----
if( collectionPersister.HasWhere )
{
! whereSqlString = whereSqlString.Append( " and " ).Append( collectionPersister.GetSQLWhereString( alias ) );
}
|