Update of /cvsroot/nhibernate/nhibernate/src/NHibernate/Collection
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22207/Collection
Modified Files:
CollectionPersister.cs
Log Message:
Refactored the Dialect out of the StringHelper
Index: CollectionPersister.cs
===================================================================
RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate/Collection/CollectionPersister.cs,v
retrieving revision 1.17
retrieving revision 1.18
diff -C2 -d -r1.17 -r1.18
*** CollectionPersister.cs 15 Apr 2004 11:36:35 -0000 1.17
--- CollectionPersister.cs 15 Apr 2004 21:07:18 -0000 1.18
***************
*** 129,133 ****
}
}
! unquotedElementColumnNames = StringHelper.UnQuote(elementColumnNames);
if ( hasIndex = collection.IsIndexed ) {
--- 129,133 ----
}
}
! unquotedElementColumnNames = dialect.UnQuote(elementColumnNames); //StringHelper.UnQuote(elementColumnNames);
if ( hasIndex = collection.IsIndexed ) {
***************
*** 143,147 ****
rowSelectColumnNames = indexColumnNames;
rowSelectType = indexType;
! unquotedIndexColumnNames = StringHelper.UnQuote(indexColumnNames);
} else {
indexType = null;
--- 143,147 ----
rowSelectColumnNames = indexColumnNames;
rowSelectType = indexType;
! unquotedIndexColumnNames = dialect.UnQuote(indexColumnNames); // StringHelper.UnQuote(indexColumnNames);
} else {
indexType = null;
|