Leszek Gawron wrote:
Is there possibility to get access to the getClass() method in flow ? I am
trying to do some tests with Hibernate and this method is not accessible and
while Hibernate makes a heavy use on reflection I have to wrap everything in
some façade (getUser( id ), getRole( id ) instead of simple session.load(
User.class, id );
        lg

Just use:


var user = session.load(User, id);


Ugo





Reply via email to