How to delete a post in Nhibernate?

Posted by marko on Stack Overflow See other posts from Stack Overflow or by marko
Published on 2010-05-02T20:28:13Z Indexed on 2010/05/02 20:48 UTC
Read the original article Hit count: 141

Filed under:

I try to delete a post in NHibernate but nothing happens. Updating, selecting and inserting new items works fine but when I try to delete nothing happens.

  IQuery query = session.CreateQuery("from Color where name like '%" + TextBox2.Text.Trim() + "%'");
        Color color = query.List<Color>()[0];
        session.Delete(color);

Edit: I forgot to call the flush method. Now works fine. Like this:

session.Flush(); 

© Stack Overflow or respective owner

Related posts about nhibernate