1

NHibernate を使用して取得したデータ オブジェクトへの変更をデータベースに永続化するのに問題があります。例外がないので、どこを見ればよいかわかりません。助言がありますか?

string name = "somenewname";
string repositoryId = "somerepositoryid";

ISession nhbSession = GetNhbSession(session);
nhbSession.Transaction.Begin();
try
{
    RepositoryDto existingRepository = nhbSession.Get<RepositoryDto>(repositoryId);
    if (existingRepository == null || existingRepository.TimeDeleted != null)
        throw new Exception("Repository does not exist in system or is deleted. Cannot modify.");

    existingRepository.Name = name; //works fine up to here as expected; is in DB with old name
    nhbSession.Update(existingRepository);
    nhbSession.Transaction.Commit();
}
catch (Exception ex)
{
    nhbSession.Transaction.Rollback();
    throw new Exception("Error modifying repository: " + ex.Message, ex);
}


<?xml version="1.0" encoding="utf-8" ?>
<hibernate-mapping xmlns="urn:nhibernate-mapping-2.2" assembly="SomeComponent"
  namespace="SomeComponent.Repository.DTO" auto-import="true" default-lazy="false">
  <class name="RepositoryDto" table="Repository" mutable="false">  
    <id name="RepositoryId" column="repositoryId" unsaved-value="0">
      <generator class="assigned"/>
    </id>
    <property name="SystemId" column="systemId" not-null="true" />
    <property name="TimeCreated" column="timeCreated" not-null="true" />
    <property name="TimeDeleted" column="timeDeleted" not-null="false" />
    <property name="Name" column="name" not-null="true" />
  </class>
</hibernate-mapping>
4

2 に答える 2

2

あなたは欠けていますFlush

// etc...
nhbSession.Update(existingRepository);
nhbSession.Flush();
nhbSession.Transaction.Commit();
// etc...

詳細:データベース トランザクションのコミット

于 2010-10-07T02:46:33.933 に答える
1

私は問題を見つけました。私のRepositoryDtoクラスマッピングに、私が推測する別のクラスマッピングのコピーアンドペーストから残った漂遊'mutable="false"'がありました。見つけるのは本当に厄介なものです!

<class name="RepositoryDto" table="Repository" mutable="false"> 

に変更

<class name="RepositoryDto" table="Repository" mutable="true"> <!-- or just delete mutable to use default of true -->

「RepositoryDtoマッピングは変更可能ではないため、このオブジェクトでUpdateを呼び出すことはできない」という形式のNHibernateからの例外があれば便利です。

于 2010-10-07T03:46:00.440 に答える