Situation: I have a class MyClass and its "lightweight" version MyClassLite, so i have
public class MyClass : MyClassLite
I also use hbm file for mapping my classes (they are mapped to the same table). The thing is that when i try to get a list of MyClassLite entities, i get not only MyClassLite entities, but a list of MyClass entities moreover. How can i rid of that?