NH Prof for Hibernate – Now in Closed Beta

time to read 2 min | 268 words

Well, I heard the requirement quite clearly, so let us see how this looks like, given the following code:

public class SelectBlogByIdUsingCriteria extends AbstractScenario {

    @Override
    protected void doExecute(SessionFactory factory) {
        doInTransaction(new SessionCallback<Object>() {
            @Override
            public Object execute(Session session) {
                return session.createCriteria(Blog.class)
                .add(Restrictions.idEq(1))
                .list();            
            }
        });

    }
}

We get the following result:

image

I am currently looking for people to actually do field testing of this for me.

If you are interested, please ping me via email.