I have the following inheritance tree:
Object
--- ServicingEntity
--------- Employer
--------- Branch
--------- ServiceRep
When I fetch the Object EntityCollection, it actually does a polymorphic fetch:
objectColl = new EntityCollection(new ObjectRootEntityFactory()) ;
How can I get it to simply return objects of type ObjectRootEntity rather than the actual derived types. Reason being, I need to bind this to a control & need access to a property that is on the ObjectRootEntity but not on the derived entities.