gpt4 book ai didi

c# - NHibernate - 条目永远不会保存到 Nhibernate 中的数据库中

转载 作者:行者123 更新时间:2023-11-29 06:41:57 26 4
gpt4 key购买 nike

我正在尝试创建一个具有 4 个属性的对象; 1x ID 和 3x 对其他表的引用。

我知道我不应该将 NHibernate“session.Save()”与 sql Insert 语句进行比较,但我仍然希望它在请求/线程完成后将其保存在数据库中。这就是我的代码的样子:

var session = Home.Instance.GetSession();
session.Begin();
var profile = session.Get<ProfilePO>(profileId);
var queue = session.Get<QueuePO>(queueId);
var telephone = session.Get<TelephonePO>(telephoneId);
var newObject = new UserProfileControlledQueueMembersPO
{
Profile = profile,
Queue = queue,
Telephone = telephone
};
session.Save(newObject);
var idOfNewObj = newObject.Id; //This gets the correct value from the autoincrementing ID in the mysql database.
var newObjFromCacheOrDb = session.QueryOver<UserProfileControlledQueueMembersPO>().Where(x => x.Id == idOfNewObj).List().FirstOrDefault();
//newObjFromCacheOrDb actually return the correct values of the created object

“session”来自包装类:

private int _transactionCount;
private ITransaction _transaction;
private ISession Session { get; set; }
public void Begin()
{
if (_transactionCount <= 0)
{
_transaction = Session.BeginTransaction();
_transactionCount = 0;
}
_transactionCount++;
}
public object Save<T>(T ob) where T : TEntityType
{
if (_transactionCount <= 0)
throw new Exception("Save is not allowed without an active transaction!");

return Session.Save(ob);
}

在 NHibernate 日志中我发现了这个:

DEBUG NHibernate.SQL (null) - INSERT INTO Profile_Queue_Telephone (ProfileId, QueueId, TelephoneId) VALUES (?p0, ?p1, ?p2);?p0 = 7283 [Type: Int32 (0:0:0)], ?p1 = 27434 [Type: Int32 (0:0:0)], ?p2 = 26749 [Type: Int32 (0:0:0)]

DEBUG NHibernate.SQL (null) - SELECT LAST_INSERT_ID()

DEBUG NHibernate.SQL (null) - SELECT this_.Id as id1_45_0_, this_.ProfileId as profileid2_45_0_, this_.QueueId as queueid3_45_0_, this_.TelephoneId as telephone4_45_0_ FROM Profile_Queue_Telephone this_ WHERE this_.Id = ?p0;?p0 = 74 [Type: Int32 (0:0:0)]

我很困惑为什么这没有在数据库上执行,因为 NHibernate 明确地将其存储在某种缓存中,因为我能够检索数据。如果是因为回滚,我假设日志中已说明,MySql 服务器上发生了回滚。

所以我的问题是我在这里缺少什么,我该怎么做才能将对象插入数据库?

编辑:

值得注意的是,我对 NHibernate 非常陌生。我正在开发一个 4 年多前的项目,用 NHibernate 编写。

最佳答案

您的包装方法 session.Begin() 启动事务,但您从未调用相应的 Commit 将更改永久保存到数据库。否则,更改将被回滚,并且您的数据库实际上不会受到影响。您的包装器方法之一应该调用 _transaction.Commit,找到该方法并调用它。

关于c# - NHibernate - 条目永远不会保存到 Nhibernate 中的数据库中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51173970/

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