From: Michael D. <mik...@us...> - 2004-06-23 21:02:41
|
Update of /cvsroot/nhibernate/nhibernate/src/NHibernate/Mapping In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31802/NHibernate/Mapping Modified Files: Property.cs Log Message: Fixed problem with a Formula property trying to be set in an update sql. Index: Property.cs =================================================================== RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate/Mapping/Property.cs,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** Property.cs 13 Apr 2004 02:06:54 -0000 1.6 --- Property.cs 23 Jun 2004 21:02:17 -0000 1.7 *************** *** 42,46 **** public bool IsUpdateable { ! get { return updateable; } set { updateable = value; } } --- 42,46 ---- public bool IsUpdateable { ! get { return updateable && !IsFormula ; } set { updateable = value; } } |