From: Peter S. <sz...@us...> - 2004-04-30 14:06:54
|
Update of /cvsroot/nhibernate/nhibernate/src/NHibernate/Cfg In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18403/NHibernate/Cfg Modified Files: Binder.cs Log Message: HQL looks like finished. Changed string.Empty to String.Empty. Index: Binder.cs =================================================================== RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate/Cfg/Binder.cs,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** Binder.cs 29 Apr 2004 16:04:56 -0000 1.19 --- Binder.cs 30 Apr 2004 14:06:45 -0000 1.20 *************** *** 283,287 **** Column col = new Column( model.Type, count++ ); BindColumn(subnode, col, isNullable); ! col.Name = (subnode.Attributes["name"]==null) ? string.Empty : subnode.Attributes["name"].Value; if (table!=null) table.AddColumn(col); //table=null -> an association, fill it in later model.AddColumn(col); --- 283,287 ---- Column col = new Column( model.Type, count++ ); BindColumn(subnode, col, isNullable); ! col.Name = (subnode.Attributes["name"]==null) ? String.Empty : subnode.Attributes["name"].Value; if (table!=null) table.AddColumn(col); //table=null -> an association, fill it in later model.AddColumn(col); |