From: Michael D. <mik...@us...> - 2004-04-14 14:41:05
|
Update of /cvsroot/nhibernate/nhibernate/src/NHibernate In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16544/NHibernate Modified Files: NHibernate.cs Log Message: Added a Guid Type. Testing is on local copy - some Driver's don't support guids and I added it to BasicClass for local testing. This will make the test in BasicTypes look like they are failing. The MockReader doesn't support GetGuid yet either - so that test is going to be ignored. Index: NHibernate.cs =================================================================== RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate/NHibernate.cs,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** NHibernate.cs 8 Apr 2004 15:55:45 -0000 1.14 --- NHibernate.cs 14 Apr 2004 14:40:51 -0000 1.15 *************** *** 65,68 **** --- 65,72 ---- public static readonly NullableType Double = TypeFactory.GetDoubleType(); + /// <summary> + /// NHibernate Guid type. + /// </summary> + public static readonly NullableType Guid = TypeFactory.GetGuidType(); /// <summary> |