Update of /cvsroot/nhibernate/nhibernate/src/NHibernate.DomainModel/NHSpecific
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20832/src/NHibernate.DomainModel/NHSpecific
Modified Files:
NullInt32UserType.cs
Log Message:
removed DbType {get;} from IUserType since SqlType {get;} is the
property being used to get that.
Index: NullInt32UserType.cs
===================================================================
RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate.DomainModel/NHSpecific/NullInt32UserType.cs,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** NullInt32UserType.cs 11 Jun 2004 20:08:46 -0000 1.1
--- NullInt32UserType.cs 6 Dec 2004 03:01:27 -0000 1.2
***************
*** 8,12 ****
namespace NHibernate.DomainModel.NHSpecific
{
-
/// <summary>
/// Converts a value of 0 to a DbNull
--- 8,11 ----
***************
*** 43,54 ****
}
- public System.Data.DbType[] DbTypes
- {
- get
- {
- return new DbType[] { _int32Type.SqlType.DbType };
- }
- }
-
public object DeepCopy(object value)
{
--- 42,45 ----
|