gpt4 book ai didi

c# - NHibernate 映射异常。 : NHibernateTesting. 帐户没有持久性

转载 作者:太空狗 更新时间:2023-10-30 01:06:46 26 4
gpt4 key购买 nike

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

账户表:

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

账户类:

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();
}
}

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

最佳答案

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

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

NHibernate.StaleStateException: Batch update returned unexpected row count from update; actual row count: 0; expected: 1

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

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

关于c# - NHibernate 映射异常。 : NHibernateTesting. 帐户没有持久性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14369924/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com