在 nHibernate 中动态设置身份字段开/关

发布于 2024-10-21 21:46:16 字数 213 浏览 3 评论 0原文

我是 NHibernate/Spring 的新手,我有一个查询,要求在运行查询之前将标识列关闭,然后再将其打开。基本上,我们将记录从日志表重新插入表中,并且需要保持 ID 相同。

当我尝试执行“SET IDENTITY_INSERT Primarykeyfield OFF”时,Hibernate 表示它无法执行,因为它需要先执行 SELECT 或 INSERT。

有什么想法吗?

I'm new to NHibernate/Spring and I have a query that requires the identity column to be OFF before running the query and turned ON afterwards. Basically, we're reinserting a record into a table from a log table and we need to keep the ID the same.

When I try to do the "SET IDENTITY_INSERT primarykeyfield OFF", Hibernate says it cannot execute because it expects a SELECT or INSERT first.

Any ideas?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

后eg是否自 2024-10-28 21:46:16

您正在尝试将 SQL 命令作为 HQL 执行。

使用 CreateSQLQuery 而不是 CreateQuery

You are trying to execute a SQL command as HQL.

Use CreateSQLQuery instead of CreateQuery.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文