What should be the correct HTTP status code returned when trying to access a specific property of an object when that property is null. I would think 404, but I can't see that the odata specification says anything about it.
GET api/MyObject(123)/MyProperty <-- this is null for this instance of the object
Should this return HTTP 404, empty object with HTTP 200, or something else?