Hi In a solution I'm working on I have quite a lot of objects mapped as components where only the id is in my local database and other properties of the object is stored behind a service boundary (so need to make a service call with the id to get the information).
So I want to implement some custom lazy loading because in the case I don't need the other properties than the id on those objects then I don't want to make the service call. As I'm using Windsor Container anyway in the solution, however so far not for my domain objects, then my idea was to create an interceptor and then let it react on the getters to load the data from the service dynamically. And I then used NHibernates IInterceptor.Instantiate to resolve my objects from the container if present and otherwise just return null and let NHibernate construct the object. And in my initially test this also worked fine. But it turned out now that it was only because I was testing my custom lazy loading directly on entities mapped as a class not as a component. Apparently instantiation of components do not seem to go through IInterceptor.Instantiate. Is my observation correct? I then tried with a custom Bytecoderprovider as described in this post by Fabio: http://fabiomaulo.blogspot.com/2008/11/entities-behavior-injection.html But again it works fine for entities mapped as classes but components seem to be instantiated differently. Is my observation correct again? So are there some way to hook into the process of instantiation of the components that I have just not found? Or is there a completely better way of getting he behavior I'm looking for? I'm thinking of skipping my current path completely and then looking into custom accessor for the custom lazy loading instead, but It's just sad as I was so close on the current path. If just component construction went through IInterceptor.Instantiate or CreateInstance of the ReflectionOptimizer then it would have worked. regards Henrik Uffe Jensen -- You received this message because you are subscribed to the Google Groups "nhusers" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/nhusers?hl=en.
