That's kinda what I figured :(
I'm kinda stuck on a Domain-Driven Design problem where I only want to get BlogEntry instances through the Blog.
In my case, I have an existing Blog instance that was retrieved from NH. It's lazy-loaded blog entries list is already assigned an NH bag, so arbitrarilly adding to it isn't an option since I'm not looking for save or update behavior on teh BlogEntry instances in the collection.
I think I can make this work if I evict the Blog entity, retrieve the BlogEntry, and add it to the list.
Cheers,
Scott
|