Hi everybody, i hope i'm posting this in the right group.

so here it is :

I managed to partially load an object using nhibernate with the use of
Projections. it works just fine but what happens if you also want to
partial load a property of a partially loaded object ? :)
eg.

public class Person {
 public string Name { get; set; };
 public string OtherProperty { get; set; }
 public string Department { get; set; }
}

public class Department {
 public string Name { get; set; };
 public string OtherProperty { get; set; }
 public string Users { get; set; }
}

i managed to load the Person class without loading all the properties
eg. the Department prop
how can i load the Person class without loading all the properties of
the Department property  ???

anybody any ideas?

thank you in advance.


--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to