Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

To keep my integration tests independent I remove all old data and insert new test data before each test. Is there a better way of doing this than simply querying for all entities and deleting them one by one?

I have considered writing a stored proc that runs "delete from tablename;" for each table that is to be cleared. That ought to quite a bit faster, but it would be nice to do it without doing SQL queries or calling SPs via NH.

I'm using vanilla NHibernate and Linq to NHibernate. I beleive Castle Active Record has something like Foo.DeleteAll(), but I don't want to use Active Record for this project.

Any ideas?

Thanks /Erik

UPDATE:

Since this question was asked and answered, progress has been made by the NHibernate team. As Ayende explains in this blog post, you can now execute DML queries directly, without NHibernate having to fetch any entities.

To delete all Foo objects you could do like this:

using (ISession session = ...)
using (ITransaction transaction = session.BeginTransaction())
{
    session.CreateQuery("delete Foo f").ExecuteUpdate();

    transaction.Commit();
}

This query would generate the following SQL:

delete from Foo

which aught to be significantly faster than fetching the entities first and then deleting them. Be careful though, since queries like these do not affect the level 1 cache.

share|improve this question
2  
If you are using SQL Server it is MUCH more efficient to execute TRUNCATE TABLE foo; as that is a minimally logged operation. Executing DELETE FROM foo; logs all the deletes for recovery purposes; on large tables this requires significant disk/time. – Matt Rogish Jun 22 '09 at 18:20
1  
TRUNCATE TABLE is almost never available when there are foreign keys involved. – Jeremy Holovacs Nov 10 '11 at 16:11

3 Answers

up vote 22 down vote accepted

In the TearDown of my UnitTests, I mostly do this:

using( ISession s = ... )
{
   s.Delete ("from Object o");
   s.Flush();
}

This should delete all entities. If you want to delete all instances of one specific entity, you can do this:

using( ISession s = .... )
{
    s.Delete ("from MyEntityName e");
    s.Flush();
}

Offcourse, there's a drawback with this method, and that is that NHibernate will first fetch the entities before deleting them.

share|improve this answer
Oh, I had totally missed that you can pass a query to session.Delete(). Thanks! – Erik Öjebo Jan 29 '09 at 9:22
4  
BTW: It's deadly slow on large tables – Jan Jongboom Oct 15 '09 at 12:50
INdeed, that's the drawback that I mentionned. – Frederik Gheysels Oct 15 '09 at 19:50
Exactly what i needed, great answer! – Rob Nov 3 '10 at 10:03
@FrederikGheysels Nevermind, I commented the wrong answer, it was for another question. – Matías Fidemraizer Feb 9 '12 at 14:01

Also, consider restoring your db from a backup, as this will ensure that you're always working from a known state (and will be much quicker than recreating the domain). It depends upon your test suite, but I do know that some of the test suits will automatically do this for you. Again, it depends upon how complex your domain is - for small domains this smells really bad. For large domains, it quickly becomes very attractive.

share|improve this answer

Yes but, can I create ISQLQuery, to bypass fetching?

share|improve this answer
I think so; you can execute something like ExecuteNonQuery or something similar on ISQLQuery if i remember well. (I can't verify it right now) – Frederik Gheysels Jun 22 '09 at 18:16

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.