Update of /cvsroot/nhibernate/nhibernate/src/NHibernate/Mapping
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3242/NHibernate/Mapping
Modified Files:
Collection.cs
Log Message:
Deleted createindex from collection & binding.
Index: Collection.cs
===================================================================
RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate/Mapping/Collection.cs,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** Collection.cs 13 Apr 2004 02:06:54 -0000 1.5
--- Collection.cs 3 May 2004 14:13:16 -0000 1.6
***************
*** 117,130 ****
}
- //TODO: H2.0.3 - not in this class - where did it move to???
- public Index CreateIndex() {
- string name = "IX" + table.UniqueColumnString( Key.ColumnCollection );
- Index index = table.GetIndex(name);
- foreach(Column col in Key.ColumnCollection ) {
- index.AddColumn(col);
- }
- return index;
- }
-
public ICacheConcurrencyStrategy Cache {
get { return cache; }
--- 117,120 ----
|