I would like to seek clarification on below scenario....
Suppose, I have 3 entity types 1) VirtualSystem 2) HyperVSystem and 3) VMWareSystem. Here, VirtualSystem is the base EntityType for both HyperVSystem and VMWareSystem. Now, if I define EntityContainer having only EnitySet for VirtualSystem. Are the following URLs correct?
1) http://host/service/VirtualSystems
Returns only instances of EntityType VirtualSystem
2) http://host/service/VirtualSystems/HyperVSystem
Returns only instances of EntityType HyperVSystem
3) http://host/service/VirtualSystems/VMWareSystem
Returns only instances of EntityType VMWareSystem
How to get all instances of VirtualSystem, HyperVSystem and VMWareSystem in a single query?