- 
        1. Re: ManyToMany lazy loadingadamw Sep 4, 2010 3:47 AM (in response to vipavel)Unforutnately now all relations are lazy-loaded. Adam 
- 
        2. Re: ManyToMany lazy loadingvipavel Sep 5, 2010 4:19 AM (in response to adamw)So does that mean that by performing "getChildren()" on the retrieved entity I will get the children related to the original entity and not the audited one? I saw somewhere inside the object the audited query for the child object loading. is it possible to invoke it somehow? 
- 
        3. Re: ManyToMany lazy loadingadamw Sep 9, 2010 10:46 AM (in response to vipavel)Hello, no, you'll get the children of the entity as they were at the given point of time (given revision). However, the children are loaded lazily, that is using a separate query on first invocation. Why would you need direct access to the query? Adam 
- 
        4. Re: ManyToMany lazy loadingvipavel Sep 12, 2010 3:03 AM (in response to adamw)Hi, Thank you for your answer. I don't need the access to this query, but I was wondering if this is the query that is used by "getChildren()". As I see from your answer and by some tests I've ran it was successful guess. Pavel 
 
    