我在我的应用程序中使用 Nhibernate。当我想保存一个新对象时,有时但很少 - 不是一直(这让我感到惊讶和疯狂) - 我遇到了一个错误,称为:
NHibernate.TypeMismatchException:
提供了错误类型的 id。预期 system.Decimal 得到 system.String
当我在计算机和平板电脑中运行程序时,不会出现此错误。但是我的客户通常会遇到此错误...尤其是当他们想在办公室外使用平板电脑保存新记录时。用外界的话说,我的意思是在平板电脑中,互联网连接是通过 mobil sim 卡提供的。他们去房屋获取人员信息。无论如何,有时他们可以一次插入一条新记录,但是对于第二条记录,错误再次发生……错误之后,无法再次插入新记录。因此,他们注销了应用程序,当他们想再次登录时,会显示相同的错误并且无法登录。
数据库是 MSSQL。id 是 PK 和十进制类型。自动增量是真的。
我无法重现我身边的问题,所以很难追查原因是什么。最大的问题是,它不会一直发生......搜索原因大约 2-3 天......但还没有提出任何解决方案......奇怪的错误!
hbm 文件是:
哈斯塔.hbm.xml
<?xml version="1.0" encoding="utf-8"?>
<hibernate-mapping xmlns="urn:nhibernate-mapping-2.2">
<class name="DataLayer.DBStructure.Hasta,DBStructure" table="Hasta" lazy="true">
<id name="Id" column="id" type="Decimal">
<generator class="native" />
</id>
<property name="Aktiflik" column="Aktiflik" type="Boolean" not-null="true" />
<many-to-one name="Hane" column="HaneId" cascade="none" />
<many-to-one name="Iletisim" column="IletisimId" cascade="none"/>
<many-to-one name="HastaIsco" column="HastaIscoId" cascade="none"/>
<many-to-one name="HastaNace" column="HastaNaceId" cascade="none"/>
<property column="KayitTarihi" type="DateTime" name="KayitTarihi" not-null="true" />
<property column="KullaniciId" type="string" name="KullaniciId" not-null="true" />
<bag name="HastaCokluParametreDeger" inverse="true" lazy="true" cascade="all">
<key column="HastaId" />
<one-to-many class="DataLayer.DBStructure.HastaCokluParametreDeger,DBStructure" />
</bag>
哈斯塔.cs
public virtual decimal Id
{
get { return m_id; }
set { m_id = value; }
}
public virtual Hane Hane
{
get { return m_hane; }
set { m_hane = value; }
}
public virtual Boolean Aktiflik
{
get { return m_aktiflik; }
set { m_aktiflik = value; }
}
public virtual Iletisim Iletisim
{
get { return m_iletisim; }
set { m_iletisim = value; }
}
public virtual HastaIsco HastaIsco
{
get { return m_hastaisco; }
set { m_hastaisco = value; }
}
public virtual HastaNace HastaNace
{
get { return m_hastanace; }
set { m_hastanace = value; }
}
public virtual DateTime KayitTarihi
{
get { return m_kayittarihi; }
set { m_kayittarihi = value; }
}
public virtual string KullaniciId
{
get { return m_kullaniciid; }
set { m_kullaniciid = value; }
}
public virtual IList<HastaCokluParametreDeger> HastaCokluParametreDeger
{
get { return m_hastacokluparametredeger; }
set { m_hastacokluparametredeger = value; }
}
CodeBehind 方面:将值分配给相关控件后,保存按钮如下所示
protected void Page_Init(object sender, EventArgs e)
{
_eski = base.GetBusinessLogic<ElektronikSaglikKaydiIslemleri>();
Oturum ot = _eski.OturumBilgisiAl();
oturumKullaniciId = ot.LoginEdenKisi.KisiId;
}
private void HastaBilgisiKaydetGuncelle()
{
try
{
_eski.HastaBilgisiKaydet(hasta, iletisim, cari);
_eski.ClearHastaCache();
}
catch()
{ }
}
public void HastaBilgisiKaydet(Hasta Has, Iletisim iletisim, Cari cari)
{
try
{
this.Provider.Insert<Cari>(cari);
iletisim.Cari = cari;
this.Provider.Insert<Iletisim>(iletisim);
Has.Iletisim = iletisim;
this.Provider.Insert<Hasta>(Has);
this.Provider.Commit();
}
catch (Exception)
{
this.Provider.Rollback();
}
}
public void Insert<T>(T obj) where T : DBEntity
{
if (obj != null)
{
object newUniqueIdentifier = null;
IClassMetadata tMeta = this.nhSess.SessionFactory.GetClassMetadata(typeof(T));
if (!tMeta.HasIdentifierProperty) throw new Exception("'" + tMeta.EntityName + "' nesnesi için tekil tanımlayıcı(unique identifier) belirlenmemiş.");
Type type = obj.GetType();
PropertyInfo pi = type.GetProperty(tMeta.IdentifierPropertyName);
//Özelliğin string olma durumuna göre tekil tanımlayıcı atama işlemi
if (tMeta.IdentifierType.GetType() == typeof(NHibernate.Type.StringType))
{
newUniqueIdentifier = this.getIdentifiersNextValue<T>(obj);
pi.SetValue(obj, newUniqueIdentifier, null);
}
if (trans == null)
{
trans = this.nhSess.BeginTransaction();
}
this.nhSess.Save(obj);
InserLog(obj);
}
}
private NHibernate.ISession nhSess
{
get
{
if (Disposing)
{
throw new ObjectDisposedException("Connection Provider");
}
if (_mySession != null)
{
if (!_mySession.IsOpen)
_mySession = null;
}
if (_mySession == null)
{
try
{
MyInterceptor interceptor = new MyInterceptor();
interceptor.cp = this;
_mySession = getFactory().OpenSession(interceptor);
_mySession.CacheMode = CacheMode.Ignore;
}
catch (Exception ex)
{
_mySession = null;
throw ex;
}
}
return _mySession;
}
}
public abstract class BusinessLogicBase
{
protected string SessionId { get; private set; }
protected ConnectionProvider Provider
{
get
{
return ConnectionProvider.Current(SessionId);
}
}
public BusinessLogicBase(string sessionId)
{
if (string.IsNullOrEmpty(sessionId))
{
throw new ArgumentNullException("SessionId");
}
this.SessionId = sessionId;
}
在 Insert 方法中,它会根据是否为字符串来检查数据类型。它是之前添加的,因为我在现有项目的结构上构建了这个应用程序。它就像一个加载项。该现有项目使用 Oracle 作为数据库,ID 数据类型为字符串。所以他们使用一些自定义功能一个一个地增加他们的值。但我的数据库是 SQL,数据类型是数字(十进制)。自动增量为真。无论如何,考虑到插入方法中的代码,我认为它不会影响插入过程。