5

我只是想开始学习 NHibernate,在使用极其简单的 POCO 进行测试时,我已经遇到了问题。我得到了 No Persister 异常,这是我的代码的样子:

Account桌子:

create table Account
(
    AccountID int primary key identity(1,1),
    AccountName varchar(10),
    CreateDate datetime
)
go

Account班级:

public class Account
{
    public virtual int AccountID { get; set; }
    public virtual string AccountName { get; set; }
    public virtual DateTime CreateDate { get; set; }

    public Account()
    {
        AccountID = 0;
        AccountName = "";
        CreateDate = new DateTime();
    }
}

映射文件,Account.hbm.xml(是的,它嵌入到程序集中):

<?xml version="1.0" encoding="utf-8" ?>
<hibernate-mapping xmlns="urn:nhibernate-mapping-2.2"
                   namespace="NHibernateTesting" assembly="NHibernateTesting">
  <class name="Account" table="Account">
    <id name="AccountID">
      <generator class="native"/>
    </id>
    <property name="AccountName" />
    <property name="CreateDate" />
  </class>
</hibernate-mapping>

配置文件中的配置部分:

<hibernate-configuration xmlns="urn:nhibernate-configuration-2.2">
    <session-factory>
      <property name="dialect">NHibernate.Dialect.MsSql2008Dialect</property>
      <property name="connection.provider">NHibernate.Connection.DriverConnectionProvider</property>
      <property name="connection.connection_string">My connection string</property>

      <mapping assembly="NHibernateTesting" />

    </session-factory>
</hibernate-configuration>

最后,进行调用的代码:

using (var session = NHibernateHelper.GetASession())
{
    using (var tran = session.BeginTransaction())
    {
        var newAccount = new Account();
        newAccount.AccountName = "some name";

        session.Update(newAccount); // Exception thrown here.

        tran.Commit();
    }
}

谁能看到我做错了什么或者为什么我会得到这个异常,我在网上读到这个问题与映射有关,但我看不出这个例子有什么问题。

4

3 回答 3

4

我已经复制了您展示的所有映射和代码,并且它正在工作。除了:

var newAccount = new Account(); // NEW
...
session.Update(newAccount); // Update throws exception:

NHibernate.StaleStateException:批量更新从更新返回了意外的行数;实际行数:0;预期:1

新对象必须通过以下方式保存:session.Save(newAccount);

当您说映射文件被标记为嵌入式资源时……很难说到底出了什么问题。请尝试仔细阅读此链接(并重新检查您的项目),并提供关于No persister异常的非常好的经验链:

于 2013-01-17T05:35:16.723 回答
2

出现此错误是因为映射配置无效。您应该检查为会话工厂设置 .Mappings 的位置。基本上在您的项目中搜索“.Mappings(”并确保您在下面的行中指定了正确的实体类。

.Mappings(m => m.FluentMappings.AddFromAssemblyOf<YourEntityClassName>())
于 2014-04-18T12:27:56.103 回答
0

我通过将列名更改为Id解决了这个错误。正如我第一次完成TemplateId所以它显示了这个错误但是当我将字段更改为Id时它得到了解决。因此,nhibernate 或 Orchard 要求将身份字段或主键作为Id

于 2015-09-10T07:18:16.540 回答