i am using v4 of oData in an web api.
my get all call returns the entire set (total 3 objects) properly.
http://localhost:9910/api/CommandsRest
but trying to select just the StoreCommand gives me 3 blank objects
http://localhost:9910/api/CommandsRest?$select=StoreCommand
trying to expand StoreCommand gives me StoreCommand but does not gives me its Navigation Properties
http://localhost:9910/api/CommandsRest?$expand=StoreCommand
i want just the StoreCommand property of the main Object with all its Navigation Properties.