Closed
Description
Do we support the navigation property in complex type?
For example:
Entity Type (AddressInfo)
|- ID (Edm.Int32)
Complex Type (Address)
|- City (Edm.String)
|- Street (Edm.String)
|- AddressInfo (AddressInfo)
Entity Type (Customer)
-> ID (Edm.Int32)
-> Location (Address)
-> Locations (Collection(Address))
EntitySet (Customers -> Customer)
So, the path:
~/Customers/{ID}/Location/AddressInfo
should be valid.
~/Customers/{ID}/Locations/AddressInfo
should be invalid.