在 nHibernate 中动态设置身份字段开/关
我是 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您正在尝试将 SQL 命令作为 HQL 执行。
使用
CreateSQLQuery
而不是CreateQuery
。You are trying to execute a SQL command as HQL.
Use
CreateSQLQuery
instead ofCreateQuery
.