the difference is the level of the proxy (as said at the begin).
class A
{
B Related{get;set;}
}With B marked as proxy NH will assign the property 'Related' with a proxy With B marked as no-proxy NH will proxy the instance of class A and when you will try to access to the property 'Related' it will it the DB and will give you an instance of type B (not a proxy). -- 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.
