此问题的最佳做法是什么?内置任何批处理功能吗?
示例代码:
using (ITransaction transaction = _session.BeginTransaction())
{
_session.Delete("FROM myObject o WHERE o.Id = IN(1,2,...99999)");
transaction.Commit();
}
提前致谢。
答案 0 :(得分:18)
HQL支持IN子句,如果你使用setParameterList,你甚至可以传入一个集合。
var idList = new List<int>() { 5,3,6,7 };
_session.CreateQuery("DELETE myObject o WHERE o.Id = IN (:idList)")
.SetParameterList("idList", idList)
.ExecuteUpdate();
答案 1 :(得分:9)
我在获得工作答案时遇到了问题,我发现以下查询100%
Session.CreateQuery("delete Customer c where c.id in (:deleteIds)")
.SetParameterList("deleteIds", deleteIds)
.ExecuteUpdate();
Customer是类名而不是表名。 id是小写的,在HQL中,它是主键而不是类中的属性名称(支持属性名称)
答案 2 :(得分:5)
您可以使用HQL删除多个对象
Look for delete here - for session.delete example
HQL DELETE示例(您可以将IN与HQL一起使用):
ISession session = sessionFactory.OpenSession();
ITransaction tx = session.BeginTransaction();
String hqlDelete = "delete Customer c where c.name = :oldName";
// or String hqlDelete = "delete Customer where name = :oldName";
int deletedEntities = session.CreateQuery( hqlDelete )
.SetString( "oldName", oldName )
.ExecuteUpdate();
tx.Commit();
session.Close();